/** * Internal dependencies */ import HomePage from '../pages/HomePage'; import JobsPage from '../pages/jobs/JobsPage'; const routes = [ { path: '/', element: HomePage, }, { path: '/jobs', element: JobsPage, }, ]; export default routes;
info at phpclasses dot org