mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 09:53:25 +00:00
11 lines
333 B
TypeScript
11 lines
333 B
TypeScript
import ScreenLayout from '../../components/layout/ScreenLayout';
|
|
import { StyledText } from '../../components/ui/Styled';
|
|
|
|
export default function HomeScreen() {
|
|
return (
|
|
<ScreenLayout title="Home" subtitle="This is where all magic happens">
|
|
<StyledText>Movies will be listed here</StyledText>
|
|
</ScreenLayout>
|
|
);
|
|
}
|