about summary refs log tree commit diff
path: root/src/lib/types.tsx
diff options
context:
space:
mode:
authorManuel Palenzuela Merino <manuel.palenzuela@datadoghq.com>2024-07-12 17:45:33 +0200
committerManuel Palenzuela Merino <manuel.palenzuela@datadoghq.com>2024-07-12 17:45:33 +0200
commitea14f0c10cbd98531e5b61ad2061d0544999f9a8 (patch)
tree81703633528f1249695938a122aebc513942fd94 /src/lib/types.tsx
parentPages: File: Formatting (diff)
downloadfs-tracer-frontend-ea14f0c10cbd98531e5b61ad2061d0544999f9a8.tar.gz
fs-tracer-frontend-ea14f0c10cbd98531e5b61ad2061d0544999f9a8.tar.bz2
fs-tracer-frontend-ea14f0c10cbd98531e5b61ad2061d0544999f9a8.zip
Components: Sidebar: Dont round corners
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>
-  )
-}