about summary refs log tree commit diff
path: root/src/pages/Home.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/Home.tsx')
-rw-r--r--src/pages/Home.tsx21
1 files changed, 14 insertions, 7 deletions
diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx
index ae1ffdc..9c86a9f 100644
--- a/src/pages/Home.tsx
+++ b/src/pages/Home.tsx
@@ -37,13 +37,20 @@ export default function Home(props: any) {
       <div className="flex h-screen">
         <SideBar />
         <main className="flex-1 overflow-y-auto">
-          <LineGraph />
-          {files.map((file: any) => (
-            <div key={file.id}>
-              <p className="underline">file: {file.absolute_path}</p>
-            </div>
-          ))
-          }
+          <div className="w-3/12">
+            <LineGraph />
+          </div>
+          <div className="w-3/12">
+            <LineGraph />
+          </div>
+          <div>
+            {files.map((file: any) => (
+              <div key={file.id}>
+                <p className="underline">file: {file.absolute_path}</p>
+              </div>
+            ))
+            }
+          </div>
         </main>
       </div>
     </>