mirror of
https://github.com/skooner-k8s/skooner.git
synced 2026-05-26 17:42:50 +00:00
11 lines
252 B
TypeScript
Executable File
11 lines
252 B
TypeScript
Executable File
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import Modal from 'react-modal';
|
|
import App from './app';
|
|
import './scss/index.scss';
|
|
|
|
// @ts-ignore
|
|
Modal.setAppElement('#root');
|
|
|
|
ReactDOM.render(<App />, document.getElementById('root'));
|