From 7a8b457f96e18b945937966ee6ba7193d20165d1 Mon Sep 17 00:00:00 2001 From: Manuel Palenzuela Merino Date: Thu, 11 Jul 2024 11:22:06 +0200 Subject: Components: FileCompnent: Add filecomponent --- src/components/Other/FSTracerFile.tsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/components/Other/FSTracerFile.tsx (limited to 'src/components') diff --git a/src/components/Other/FSTracerFile.tsx b/src/components/Other/FSTracerFile.tsx new file mode 100644 index 0000000..61c8e35 --- /dev/null +++ b/src/components/Other/FSTracerFile.tsx @@ -0,0 +1,13 @@ +import { FSTracerFile } from "../../lib/types" + +interface FileComponentProps { + file: FSTracerFile +} + +export default function FileComponent(props: FileComponentProps) { + return ( + +

file: {props.file.absolute_path}

+
+ ) +} -- cgit 1.4.1