2020-06-01 09:42:30 -04:00
|
|
|
import React from "react";
|
|
|
|
import ReactDOM from "react-dom";
|
2020-06-04 09:35:07 -04:00
|
|
|
import "./index.scss";
|
2020-06-01 09:42:30 -04:00
|
|
|
import App from "./App";
|
|
|
|
|
|
|
|
ReactDOM.render(
|
2020-06-24 11:20:56 -04:00
|
|
|
<React.StrictMode>
|
|
|
|
<App />
|
|
|
|
</React.StrictMode>,
|
|
|
|
document.getElementById("root")
|
2020-06-01 09:42:30 -04:00
|
|
|
);
|