Primer commit

This commit is contained in:
2026-06-30 12:24:04 -04:00
commit 510ebe8058
39 changed files with 4232 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
import { BrowserRouter, Routes, Route } from "react-router-dom";
import EmployeeCard from "./components/EmployeeCard";
import IdCardGenerator from "./Generator";
export default function App() {
return (
<BrowserRouter>
<Routes>
<Route
path="/employee"
element={<IdCardGenerator />}
/>
<Route
path="/employee/:employeeNumber"
element={<EmployeeCard />}
/>
</Routes>
</BrowserRouter>
);
}