mirror of
https://github.com/theoludwig/p61-project.git
synced 2024-07-17 07:00:12 +02:00
27 lines
538 B
TypeScript
27 lines
538 B
TypeScript
|
import { Button } from "react-native-paper"
|
||
|
import { useRouter } from "expo-router"
|
||
|
|
||
|
import { About } from "@/presentation/react-native/components/About"
|
||
|
|
||
|
const AboutPage: React.FC = () => {
|
||
|
const router = useRouter()
|
||
|
|
||
|
return (
|
||
|
<About
|
||
|
actionButton={
|
||
|
<Button
|
||
|
mode="contained"
|
||
|
labelStyle={{ fontSize: 18 }}
|
||
|
onPress={() => {
|
||
|
router.push("/authentication/login")
|
||
|
}}
|
||
|
>
|
||
|
Get Started 🚀
|
||
|
</Button>
|
||
|
}
|
||
|
/>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default AboutPage
|