mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-24 01:55:03 +00:00
Add presetup-configurator to the repo
This commit is contained in:
parent
c655f61a67
commit
4ea081eecf
14 changed files with 829 additions and 0 deletions
15
presetup-configurator/src/index.tsx
Normal file
15
presetup-configurator/src/index.tsx
Normal 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();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue