SaulLu's picture
add component code
3fc2d14
raw
history blame
No virus
214 Bytes
import React from "react"
import ReactDOM from "react-dom"
import Observable from "./Observable"
ReactDOM.render(
<React.StrictMode>
<Observable />
</React.StrictMode>,
document.getElementById("root")
)