mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 00:36:39 +00:00
9 lines
247 B
TypeScript
9 lines
247 B
TypeScript
import React from "react";
|
|
import ReactDOM from "react-dom";
|
|
import "./index.css";
|
|
import App from "./App";
|
|
import * as serviceWorker from "./serviceWorker";
|
|
|
|
ReactDOM.render(<App />, document.getElementById("root"));
|
|
|
|
serviceWorker.unregister();
|