i want to hide my navbar when i'm in all page have path='/admin/...' but it's so length. How can i clean it, thank very much.
let HideHeader = window.location.pathname === '/admin/info' && '/admin/setting' && '/admin/post' && '/admin/messange' ? null : <MyNav username={username} />
Try to use includes() method:
let HideHeader = window.location.pathname.includes('/admin/') ? null : <MyNav username={username} />