0

AppRouter.js

export default function AppRouter() {
  let element = useRoutes([
    { path: "app/main", element: <main /> },
    { path: "app/screen1", element: <screen1 /> },
    { path: "app/screen2", element: <screen2 /> },
  ]);
  return element;

How I can hide navigation bar on a specific component?

AddyProg
  • 2,960
  • 13
  • 59
  • 110

0 Answers0