import { useParams } from "react-router-dom" import SideBar from "../components/Sidebar/Sidebar" export default function File() { let { filepath } = useParams(); console.log("FILEPATH: ", filepath) return ( <>
{filepath}
) }