diff options
Diffstat (limited to 'src/pages/Home.tsx')
-rw-r--r-- | src/pages/Home.tsx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx index 6244ac5..8bda03b 100644 --- a/src/pages/Home.tsx +++ b/src/pages/Home.tsx @@ -2,14 +2,6 @@ import { useEffect, useState, useCallback } from "react" import { useNavigate } from "react-router-dom" -interface File { - id: number - user_id: string - absolute_path: string - contents: string - timestamp: string -} - export default function Home(props: any) { const navigate = useNavigate() |