aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/components/ui/PageTitle.tsx
blob: 57b19e7db2b2ef0bfdfe51eba0469d97688e25ff (plain) (blame)
1
2
3
4
5
import { Text } from "react-native";

export default function PageTitle({ title }: { title: string }) {
  return <Text className="p-4 text-4xl font-bold">{title}</Text>;
}