kuma-archive/src/components/navigation/index.tsx
2025-03-20 16:53:09 +09:00

10 lines
225 B
TypeScript

import { useLocation } from "react-router";
export function FileNavigator() {
const location = useLocation();
const split = location.pathname.substring(1, location.pathname.length).split("/");
return <div>
</div>;
}