3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-10 12:25:02 +00:00

Add presetup-configurator to the repo

This commit is contained in:
Dragory 2021-01-18 22:44:54 +02:00
parent d4d89327fd
commit 8c11349a8b
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1
14 changed files with 829 additions and 0 deletions

View file

@ -0,0 +1,15 @@
import React from "react";
import ReactDOM from "react-dom";
import { App } from "./App";
import "./index.css";
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById("root")
);
if ((import.meta as any).hot) {
(import.meta as any).hot.accept();
}