cifkao's picture
Add app files
8443315
raw
history blame
232 Bytes
import React from "react";
import ReactDOM from "react-dom";
import HighlightedText from "./HighlightedText";
ReactDOM.render(
<React.StrictMode>
<HighlightedText />
</React.StrictMode>,
document.getElementById("root")
)