11 lines
200 B
TypeScript
11 lines
200 B
TypeScript
|
import { View, Text } from 'react-native'
|
||
|
import React from 'react'
|
||
|
import Login from "../../screens/signupscreen"
|
||
|
|
||
|
const signup = () => {
|
||
|
return (
|
||
|
<Login></Login>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default signup
|