import { customWidthAtom, useCustomWidthAtom } from "@/atoms/userSettingsAtom"; import { useAtom, useAtomValue } from "jotai"; import React from "react"; import { translationAtom } from "@/atoms/translations-atom"; export function CustomResolutionInput() { const [useCustomWidth, setUseCustomWidth] = useAtom(useCustomWidthAtom); const [customWidth, setCustomWidth] = useAtom(customWidthAtom); const t = useAtomValue(translationAtom); return (
{t("SETTINGS.CUSTOM_INPUT_RESOLUTION.TITLE")}
{t("SETTINGS.CUSTOM_INPUT_RESOLUTION.RESTART")}
{t("SETTINGS.CUSTOM_INPUT_RESOLUTION.DESCRIPTION")}