blob: 1c1543ce72943cfff216d9a3d8a776e2e45385aa (
plain) (
blame)
1
2
3
4
5
6
7
|
import { Text } from "react-native";
export default function PageTitle({ title }: { title: string }) {
return (
<Text className="p-4 text-4xl font-bold text-foreground">{title}</Text>
);
}
|