mirror of
https://github.com/lemeow125/Reactnative-notesapp.git
synced 2025-04-11 20:41:23 +08:00
25 lines
711 B
TypeScript
25 lines
711 B
TypeScript
import * as React from 'react';
|
|
import {View, Text} from 'react-native';
|
|
import styles from '../../styles';
|
|
import Background from '../../Components/Background/Background';
|
|
import AppIcon from '../../Components/Icons/AppIcon/AppIcon';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<Background>
|
|
<View
|
|
style={{
|
|
display: 'flex',
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
}}>
|
|
<AppIcon size={64} color="white" />
|
|
<Text style={{...styles.text_white, ...{fontSize: 32}}}>
|
|
Clip Notes
|
|
</Text>
|
|
</View>
|
|
<View style={{margin: 16}} />
|
|
</Background>
|
|
);
|
|
}
|