about summary refs log tree commit diff
path: root/src/lib/types.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/types.tsx')
-rw-r--r--src/lib/types.tsx10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/lib/types.tsx b/src/lib/types.tsx
index 00ab909..a4c6549 100644
--- a/src/lib/types.tsx
+++ b/src/lib/types.tsx
@@ -5,13 +5,3 @@ export type FSTracerFile = {
   contents: string;
   timestamp: string;
 }
-
-interface FileComponentProps {
-  file: FSTracerFile
-}
-
-export default function FileComponent(props: FileComponentProps) {
-  return (
-    <p className="underline">file: {props.file.absolute_path}</p>
-  )
-}