mirror of
https://github.com/lemeow125/Reactnative-notesapp.git
synced 2025-04-19 00:11:25 +08:00
12 lines
354 B
TypeScript
12 lines
354 B
TypeScript
import * as React from 'react';
|
|
import {View, Text} from 'react-native';
|
|
import styles from '../../styles';
|
|
import Background from '../../Components/Background/Background';
|
|
|
|
export default function Register() {
|
|
return (
|
|
<Background>
|
|
<Text style={{...styles.text_white, ...{fontSize: 32}}}>Register</Text>
|
|
</Background>
|
|
);
|
|
}
|