chatty / client /src /pages /Authentication.jsx
arabdullah's picture
@ARAbdullaSL
a0fda44 verified
import React from "react";
import { useState } from "react";
import Login from "../components/pages/Authentication/Login";
import Register from "../components/pages/Authentication/Register";
function Authentication() {
const [userWantToLogin, setUserWantsToLogin] = useState(true);
return (
<div className="chat-bg w-full h-full flex items-center justify-center px-[1rem]">
{userWantToLogin && <Login setUserWantsToLogin={setUserWantsToLogin} />}
{!userWantToLogin && (
<Register setUserWantsToLogin={setUserWantsToLogin} />
)}
</div>
);
}
export default Authentication;