forked from cemaden-educacao/WPD-MobileApp
GabrielTrettel
3 years ago
6 changed files with 151 additions and 33 deletions
-
46src/app/navigation/AccountNavigator.js
-
10src/app/screens/Abbout.js
-
78src/app/screens/AccountScreen.js
-
10src/app/screens/ActivateInstitution.js
-
11src/app/screens/EditUserData.js
-
11src/app/screens/UpdatePassword.js
@ -0,0 +1,10 @@ |
|||
import React from "react"; |
|||
import {View, Text} from "react-native"; |
|||
|
|||
export default function Abbout(props) { |
|||
return ( |
|||
<View> |
|||
<Text>Abbout</Text> |
|||
</View> |
|||
) |
|||
} |
@ -0,0 +1,10 @@ |
|||
import React from "react"; |
|||
import {View, Text} from "react-native"; |
|||
|
|||
export default function ActivateInstitution(props) { |
|||
return ( |
|||
<View> |
|||
<Text>Ativar instituição</Text> |
|||
</View> |
|||
) |
|||
} |
@ -0,0 +1,11 @@ |
|||
import React from "react"; |
|||
import {View, Text} from "react-native"; |
|||
|
|||
export default function EditUserData(props) { |
|||
return ( |
|||
<View> |
|||
<Text>Editar perfil</Text> |
|||
</View> |
|||
) |
|||
} |
|||
|
@ -0,0 +1,11 @@ |
|||
import React from "react"; |
|||
import {View, Text} from "react-native"; |
|||
|
|||
export default function UpdatePassword(props) { |
|||
return ( |
|||
<View> |
|||
<Text>Alterar senha</Text> |
|||
</View> |
|||
) |
|||
} |
|||
|
Write
Preview
Loading…
Cancel
Save
Reference in new issue