mirror of
https://github.com/rjNemo/go-pass-gen
synced 2026-06-10 20:56:48 +00:00
13 lines
266 B
TypeScript
13 lines
266 B
TypeScript
import React from "react";
|
|
import ReactDOM from "react-dom";
|
|
import App from "./App";
|
|
import reportWebVitals from "./reportWebVitals";
|
|
|
|
ReactDOM.render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>,
|
|
document.getElementById("root")
|
|
);
|
|
|
|
reportWebVitals();
|