summaryrefslogtreecommitdiff
path: root/src/index.tsx
blob: 8d5df82888914416ff616754d3e66ae4f06f3733 (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 >
);