blob: 59f743a281af278e48c5d47c2d9459c5ffa15891 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import dynamic from 'next/dynamic'
const NavbarDesktop = dynamic(() => import('./NavbarDesktop'))
const NavbarMobile = dynamic(() => import('./NavbarMobile'))
const Navbar = ({isMobile} ) => {
if(isMobile) return <NavbarMobile />
return (
<>
<NavbarDesktop />
</>
)
}
export default Navbar
|