mirror of
https://github.com/tooot-app/app
synced 2025-06-05 22:19:13 +02:00
11 lines
251 B
JavaScript
11 lines
251 B
JavaScript
import React from 'react'
|
|
import { Button, View } from 'react-native'
|
|
|
|
export default function Base ({ navigation: { navigate } }) {
|
|
return (
|
|
<View>
|
|
<Button title='登录' onPress={() => navigate('Me-Authentication')} />
|
|
</View>
|
|
)
|
|
}
|