mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
7 lines
200 B
TypeScript
7 lines
200 B
TypeScript
import * as ScreenOrientation from "@/packages/expo-screen-orientation";
|
|
import { atom } from "jotai";
|
|
|
|
export const orientationAtom = atom<number>(
|
|
ScreenOrientation.OrientationLock.PORTRAIT_UP
|
|
);
|