import { FolderOpen } from "lucide-react"; import { VolumeFileBrowser } from "~/client/components/volume-file-browser"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "~/client/components/ui/card"; import type { Volume } from "~/client/lib/types"; type Props = { volume: Volume; }; export const FilesTabContent = ({ volume }: Props) => { if (volume.status !== "mounted") { return (

Volume must be mounted to browse files.

Mount the volume to explore its contents.

); } return ( File Explorer Browse the files and folders in this volume. ); };