import { NavLink, Route, Routes } from 'react-router-dom' import ConsoleHome from './views/ConsoleHome' import Discover from './views/Discover' import ChamadosList from './views/ChamadosList' import ChamadoHub from './views/ChamadoHub' import AdminShell from './layouts/AdminShell' import AdminHome from './views/admin/AdminHome' import AdminDominio from './views/admin/AdminDominio' const opsNav = [ { to: '/', label: 'Console', end: true, icon: '◆' }, { to: '/discover', label: 'Discover', icon: '◇' }, { to: '/chamados', label: 'Chamados', icon: '◇' }, ] function OpsShell() { return (
} /> } /> } /> } />
) } export default function App() { return ( }> } /> } /> } /> ) }