Encrypted-Chat-Client/app/(auth)/signup.tsx
2024-12-15 06:40:35 -08:00

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