import { FSTracerFile } from "../../lib/types" interface FileComponentProps { file: FSTracerFile } export default function FileComponent(props: FileComponentProps) { return (

file: {props.file.absolute_path}

) }