diff options
| author | MohamedBassem <me@mbassem.com> | 2024-03-15 21:06:13 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-03-15 21:06:13 +0000 |
| commit | 267f72f84c6a5979eae696dae8fddee25188c1bb (patch) | |
| tree | 704907d296f82c524c0a359c3c8e5ccab4415b3d /apps/mobile/components/ui | |
| parent | c4d7223115865474f09661cdbfee60a559f4b2c2 (diff) | |
| download | karakeep-267f72f84c6a5979eae696dae8fddee25188c1bb.tar.zst | |
ui(mobile): New header style in the app
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>; +} |
