Initial commit

This commit is contained in:
Yura Dupyn 2026-05-14 18:16:38 +02:00
commit 2137fcc776
16 changed files with 4057 additions and 0 deletions

16
src/main.tsx Normal file
View file

@ -0,0 +1,16 @@
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App';
import './index.css';
const rootElement = document.getElementById('root');
if (rootElement === null) {
throw new Error('Root element #root was not found.');
}
createRoot(rootElement).render(
<StrictMode>
<App />
</StrictMode>,
);