Files
streamyfin_mirror/utils/atoms/orientation.ts
2025-07-21 09:44:24 +02:00

7 lines
201 B
TypeScript

import { atom } from "jotai";
import * as ScreenOrientation from "@/packages/expo-screen-orientation";
export const orientationAtom = atom<number>(
ScreenOrientation.OrientationLock.PORTRAIT_UP,
);