mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 15:03:26 +00:00
14 lines
432 B
TypeScript
14 lines
432 B
TypeScript
import { RegularText } from '../../components/Styled';
|
|
import ScreenLayout from '../../components/layout/screenLayout';
|
|
import { globalStyles } from '../../styles/global';
|
|
|
|
export default function HomeScreen() {
|
|
return (
|
|
<ScreenLayout title="Home" subtitle="This is where all magic happens">
|
|
<RegularText style={globalStyles.textWhite}>
|
|
Movies will be listed here
|
|
</RegularText>
|
|
</ScreenLayout>
|
|
);
|
|
}
|