mirror of
https://github.com/lemeow125/Reactnative-notesapp.git
synced 2025-04-19 16:31:23 +08:00
16 lines
419 B
TypeScript
16 lines
419 B
TypeScript
import * as React from "react";
|
|
import { View, Text } from "react-native";
|
|
import styles from "../../styles";
|
|
import Background from "../../Components/Background/Background";
|
|
|
|
export interface props {}
|
|
|
|
export default function UserInfo(props: props) {
|
|
return (
|
|
<Background>
|
|
<Text style={{ ...styles.text_white, ...{ fontSize: 32 } }}>
|
|
UserInfo
|
|
</Text>
|
|
</Background>
|
|
);
|
|
}
|