mirror of
https://github.com/theoludwig/p61-project.git
synced 2024-07-17 07:00:12 +02:00
21 lines
395 B
TypeScript
21 lines
395 B
TypeScript
import { Text } from "react-native-paper"
|
|
import { SafeAreaView } from "react-native-safe-area-context"
|
|
|
|
const NewHabitPage: React.FC = () => {
|
|
return (
|
|
<SafeAreaView
|
|
style={[
|
|
{
|
|
flex: 1,
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
},
|
|
]}
|
|
>
|
|
<Text>New Habit</Text>
|
|
</SafeAreaView>
|
|
)
|
|
}
|
|
|
|
export default NewHabitPage
|