feat: tools normalized

This commit is contained in:
Ibrahima G. Coulibaly
2024-06-22 22:06:16 +01:00
parent 17ba68be34
commit 23f50ffead
36 changed files with 2625 additions and 1045 deletions

View File

@@ -1,8 +1,8 @@
import { createRoot } from 'react-dom/client'
import 'tailwindcss/tailwind.css'
import App from 'components/App'
import { createRoot } from 'react-dom/client';
import 'tailwindcss/tailwind.css';
import App from 'components/App';
const container = document.getElementById('root') as HTMLDivElement
const root = createRoot(container)
const container = document.getElementById('root') as HTMLDivElement;
const root = createRoot(container);
root.render(<App />)
root.render(<App />);