10 lines
225 B
TypeScript
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>;
|
|
}
|