Files
kvm/ui/src/root.tsx
Marc Brooks 5f3dd89d55 Upgrade vite and react-router (#778)
| Package                           | From | To       |
|----------------------------------|-----------|---------|
react-router                       | ( new ) | 7.8.2 |
react-router-dom             | 6.22.3 | ( del ) |
@vitejs/plugin-react-swc | 3.10.2 | 4.0.1 |
vite                                      | 6.3.5   | 7.1.4 |
2025-09-04 12:20:01 +02:00

8 lines
103 B
TypeScript

import { Outlet } from "react-router";
function Root() {
return <Outlet />;
}
export default Root;