Files
streamyfin/utils/atoms/orientation.ts
Fredrik Burmester 0d7edca1ad wip
2025-07-15 11:23:35 +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,
);