11 lines
151 B
TypeScript
11 lines
151 B
TypeScript
import { Text, View } from "react-native";
|
|
|
|
function Notes() {
|
|
return (
|
|
<View>
|
|
<Text>Notes</Text>
|
|
</View>
|
|
);
|
|
}
|
|
export default Notes;
|