diff options
Diffstat (limited to 'apps/mobile/components/ui')
| -rw-r--r-- | apps/mobile/components/ui/PageTitle.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/mobile/components/ui/PageTitle.tsx b/apps/mobile/components/ui/PageTitle.tsx new file mode 100644 index 00000000..1d1a8400 --- /dev/null +++ b/apps/mobile/components/ui/PageTitle.tsx @@ -0,0 +1,5 @@ +import {Text} from "react-native"; + +export default function PageTitle({ title }: { title: string }) { + return <Text className="p-4 text-4xl font-bold">{title}</Text>; +} |
