mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-28 03:30:05 +00:00
11 lines
205 B
TypeScript
11 lines
205 B
TypeScript
import * as React from "react";
|
|
|
|
import * as ReactDOM from "react-dom";
|
|
|
|
import App from "./App";
|
|
|
|
import "./tabler.css";
|
|
import "./index.scss";
|
|
|
|
ReactDOM.render(<App />, document.getElementById("root"));
|