mirror of
https://github.com/luckfox-eng29/kvm.git
synced 2026-01-18 11:38:32 +01:00
8 lines
107 B
TypeScript
8 lines
107 B
TypeScript
import { Outlet } from "react-router-dom";
|
|
|
|
function Root() {
|
|
return <Outlet />;
|
|
}
|
|
|
|
export default Root;
|