1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00

Second commit

This commit is contained in:
Zhiyuan Zheng
2020-10-23 09:22:17 +02:00
parent 9b8df9316f
commit 83f6039ade
26 changed files with 639 additions and 259 deletions

10
src/stacks/Me/Base.jsx Normal file
View File

@ -0,0 +1,10 @@
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>
)
}