From 89feb4a5ae7a6095a12dfdf740449bb287181f33 Mon Sep 17 00:00:00 2001 From: Vivek Date: Mon, 8 Jun 2026 11:40:42 +0000 Subject: [PATCH] Fix: Add main.tsx entry point and index.css for Tailwind, simplify LoadTable --- src/components/LoadTable.tsx | 9 +++++++-- src/index.css | 3 +++ src/main.tsx | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/src/components/LoadTable.tsx b/src/components/LoadTable.tsx index 223d777..a82fa23 100644 --- a/src/components/LoadTable.tsx +++ b/src/components/LoadTable.tsx @@ -1,5 +1,10 @@ import React from 'react'; export default function LoadTable() { - return

🗂️ Load table will appear here – add data‑fetching logic later.

; -} + return ( +
+

Freight Loads

+

Data will load from Supabase

+
+ ); +} \ No newline at end of file diff --git a/src/index.css b/src/index.css index e69de29..bd6213e 100644 --- a/src/index.css +++ b/src/index.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; \ No newline at end of file diff --git a/src/main.tsx b/src/main.tsx index bcaa4a0..b3c11a7 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -1,6 +1,6 @@ import React from 'react'; import ReactDOM from 'react-dom/client'; -import App from './App.tsx'; +import App from './App'; import './index.css'; ReactDOM.createRoot(document.getElementById('root')!).render(