import { isMobile } from "react-device-detect"; import AuthDesktop from "./AuthDesktop"; import AuthMobile from "./AuthMobile"; const Auth = () => { const isAuth = false; const userName = "Name"; return ( <> {isMobile ? ( ) : ( )} ); }; export default Auth;