export with one error

This commit is contained in:
José Salazar
2025-11-26 13:05:42 -05:00
parent 46dcebd69f
commit 645fecfae9
33 changed files with 10028 additions and 1726 deletions

View File

@@ -134,6 +134,16 @@ import InvoiceDetail from "./InvoiceDetail";
import InvoiceEditor from "./InvoiceEditor";
import api-docs-raw from "./api-docs-raw";
import Tutorials from "./Tutorials";
import Schedule from "./Schedule";
import StaffAvailability from "./StaffAvailability";
import WorkerShiftProposals from "./WorkerShiftProposals";
import { BrowserRouter as Router, Route, Routes, useLocation } from 'react-router-dom';
const PAGES = {
@@ -272,6 +282,16 @@ const PAGES = {
InvoiceEditor: InvoiceEditor,
api-docs-raw: api-docs-raw,
Tutorials: Tutorials,
Schedule: Schedule,
StaffAvailability: StaffAvailability,
WorkerShiftProposals: WorkerShiftProposals,
}
function _getCurrentPage(url) {
@@ -433,6 +453,16 @@ function PagesContent() {
<Route path="/InvoiceEditor" element={<InvoiceEditor />} />
<Route path="/api-docs-raw" element={<api-docs-raw />} />
<Route path="/Tutorials" element={<Tutorials />} />
<Route path="/Schedule" element={<Schedule />} />
<Route path="/StaffAvailability" element={<StaffAvailability />} />
<Route path="/WorkerShiftProposals" element={<WorkerShiftProposals />} />
</Routes>
</Layout>
);