1 2 3 4 5 6 7 8 9
import * as React from "react"; import * as ReactDOM from "react-dom"; import App from "./components/App/App"; import 'bootstrap/dist/css/bootstrap.min.css'; import './index.scss'; ReactDOM.render(<App />, document.getElementById("root"));