feat: movie-web tab

This commit is contained in:
Adrian Castro
2024-02-18 22:22:50 +01:00
parent 8914cca32c
commit efab11bff5
6 changed files with 90 additions and 17 deletions

View File

@@ -0,0 +1,10 @@
import ScreenLayout from "~/components/layout/ScreenLayout";
import { Text } from "~/components/ui/Text";
export default function MovieWebScreen() {
return (
<ScreenLayout title="movie-web">
<Text>movie-web config tab</Text>
</ScreenLayout>
);
}