mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-01-15 23:59:08 +00:00
7 lines
189 B
TypeScript
7 lines
189 B
TypeScript
import * as ScreenOrientation from "expo-screen-orientation";
|
|
import { atom } from "jotai";
|
|
|
|
export const orientationAtom = atom<number>(
|
|
ScreenOrientation.OrientationLock.PORTRAIT_UP
|
|
);
|