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("APP.INFOS.CUSTOM_INPUT_RESOLUTION.WIDTH")}
{t("APP.INFOS.CUSTOM_INPUT_RESOLUTION.RESTART")}
{t("APP.INFOS.CUSTOM_INPUT_RESOLUTION.CUSTOM_WIDTH_TIP")}