From 20ab8242a959c3fa6744794beed26259f65ac983 Mon Sep 17 00:00:00 2001 From: nano Date: Tue, 5 May 2026 17:30:43 +0000 Subject: [PATCH] Merge branch 1.2 into main (campaign-tracker-client/src/App.tsx) --- campaign-tracker-client/src/App.tsx | 137 +++++----------------------- 1 file changed, 23 insertions(+), 114 deletions(-) diff --git a/campaign-tracker-client/src/App.tsx b/campaign-tracker-client/src/App.tsx index a66b5ef..9224dd4 100644 --- a/campaign-tracker-client/src/App.tsx +++ b/campaign-tracker-client/src/App.tsx @@ -1,121 +1,30 @@ -import { useState } from 'react' -import reactLogo from './assets/react.svg' -import viteLogo from './assets/vite.svg' -import heroImg from './assets/hero.png' +import { ConfigProvider, theme } from 'antd' import './App.css' +import { WorkspaceShell } from './workspace/WorkspaceShell' +import { workspaceThemeTokens } from './workspace/workspaceContracts' function App() { - const [count, setCount] = useState(0) - return ( - <> -
-
- - React logo - Vite logo -
-
-

Get started

-

- Edit src/App.tsx and save to test HMR -

-
- -
- -
- -
-
- -

Documentation

-

Your questions, answered

- -
-
- -

Connect with us

-

Join the Vite community

- -
-
- -
-
- + +
+ +
+
) }