mirror of
https://github.com/streamyfin/streamyfin.git
synced 2026-04-12 03:52:01 +01:00
14 lines
284 B
TypeScript
14 lines
284 B
TypeScript
import { Platform } from "react-native";
|
|
import { Login } from "@/components/login/Login";
|
|
import { TVLogin } from "@/components/login/TVLogin";
|
|
|
|
const LoginPage: React.FC = () => {
|
|
if (Platform.isTV) {
|
|
return <TVLogin />;
|
|
}
|
|
|
|
return <Login />;
|
|
};
|
|
|
|
export default LoginPage;
|