worker-pastebin/src/web/index.coffee
Peter Cai 8fccf114f5
basic style for the home component
at least it looks okay now. let's implement all the other stuff later
2020-02-17 21:14:05 +08:00

9 lines
211 B
CoffeeScript

import React from "react"
import ReactDOM from "react-dom"
import "./styles/index.css"
import Home from "./home"
elem = document.createElement "div"
document.body.appendChild elem
ReactDOM.render <Home/>, elem