From 79627bf4d58e5b9b7179f8b2345b382dbf129eba Mon Sep 17 00:00:00 2001 From: Hermann_Kitio Date: Fri, 17 Apr 2026 16:42:39 +0300 Subject: [PATCH] feat(app): bascule entry point vers src/app/main.tsx + retrait boilerplate Vite --- index.html | 6 +-- src/App.tsx | 121 --------------------------------------------------- src/main.tsx | 10 ----- 3 files changed, 3 insertions(+), 134 deletions(-) delete mode 100644 src/App.tsx delete mode 100644 src/main.tsx diff --git a/index.html b/index.html index f9f5d7d..fa5268e 100644 --- a/index.html +++ b/index.html @@ -1,13 +1,13 @@ - + - expria-tmp + Expria
- + diff --git a/src/App.tsx b/src/App.tsx deleted file mode 100644 index 46a5992..0000000 --- a/src/App.tsx +++ /dev/null @@ -1,121 +0,0 @@ -import { useState } from 'react' -import reactLogo from './assets/react.svg' -import viteLogo from './assets/vite.svg' -import heroImg from './assets/hero.png' -import './App.css' - -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

- -
-
- -
-
- - ) -} - -export default App diff --git a/src/main.tsx b/src/main.tsx deleted file mode 100644 index bef5202..0000000 --- a/src/main.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import { StrictMode } from 'react' -import { createRoot } from 'react-dom/client' -import './index.css' -import App from './App.tsx' - -createRoot(document.getElementById('root')!).render( - - - , -)