Created a new Expo app

This commit is contained in:
2022-02-24 23:47:53 +01:00
commit 05f4a6c3ab
28 changed files with 26598 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import { Text, TextProps } from './Themed';
export function MonoText(props: TextProps) {
return <Text {...props} style={[props.style, { fontFamily: 'space-mono' }]} />;
}