1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00
Files
tooot/src/stacks/Me/Base.jsx
Zhiyuan Zheng 83f6039ade Second commit
2020-10-23 09:22:17 +02:00

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>
)
}