import React, {useState} from 'react' import LoginForm from './Identify Childrens/LoginForm' import RegisterForm from './Identify Childrens/RegisterForm' const Identify = () => { const [act, setAct] = useState('register') return (
{ act === 'login' ? : null } { act === 'register' ? : null }
) } export default Identify