diff options
-rw-r--r-- | src/pages/Home.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx index 521080f..6244ac5 100644 --- a/src/pages/Home.tsx +++ b/src/pages/Home.tsx @@ -45,7 +45,7 @@ export default function Home(props: any) { <p>Logged in!</p> {files.map((file: any) => ( <div key={file.id}> - <p>file: {file.absolute_path}</p> + <p className="underline">file: {file.absolute_path}</p> </div> )) } |