first commit

This commit is contained in:
Tóth Ádám
2024-12-10 10:41:30 +01:00
commit 6656516036
39 changed files with 35529 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import Auto from "./Auto"
import reportWebVitals from './reportWebVitals';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<Auto />
</React.StrictMode>
);
reportWebVitals();