forked from Ninjalama/streamyfin_mirror
12 lines
278 B
TypeScript
12 lines
278 B
TypeScript
import { Text } from "@/components/common/Text";
|
|
import React from "react";
|
|
import { View } from "react-native";
|
|
|
|
export default function page() {
|
|
return (
|
|
<View className="flex items-center justify-center h-full -mt-12">
|
|
<Text>Coming soon</Text>
|
|
</View>
|
|
);
|
|
}
|