summaryrefslogtreecommitdiff
path: root/src/index.tsx
blob: 353cebb5a2df4145cfe7d734091f3c63b91322dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import { App } from './Geshem';

console.log()

const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement);
root.render(
    <React.StrictMode>
        <App />
    </React.StrictMode >
);