8 lines
143 B
TypeScript
8 lines
143 B
TypeScript
import { Text } from "react-native";
|
|
|
|
export function General() {
|
|
return <Text style={{ fontFamily: 'mono' }}>Welcome to settings</Text>
|
|
}
|
|
|
|
|