11 lines
164 B
JavaScript
11 lines
164 B
JavaScript
|
import React from 'react'
|
||
|
import { Text, View } from 'react-native'
|
||
|
|
||
|
export default function SignUpScreen() {
|
||
|
return (
|
||
|
<>
|
||
|
Page Inscription
|
||
|
</>
|
||
|
);
|
||
|
}
|