import RenderView from "./ContentRenderer.tsx"; import UpList from "./UpList.tsx"; import { extname } from "path/mod.ts"; import { encodePath } from "../util/util.ts"; export default function FileViewer(props: { path: string }) { const { path } = props; const srcPath = `/dir/${encodePath(path)}`; return (
Direct link
); }