listmonk/frontend/src/index.js

8 lines
167 B
JavaScript
Raw Normal View History

2019-03-09 08:46:47 +01:00
import React from "react"
import ReactDOM from "react-dom"
2018-10-25 15:51:47 +02:00
2019-03-09 08:46:47 +01:00
import "./index.css"
import App from "./App.js"
2018-10-25 15:51:47 +02:00
2019-03-09 08:46:47 +01:00
ReactDOM.render(<App />, document.getElementById("root"))