3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-18 15:00:00 +00:00
zeppelin/presetup-configurator/src/App.tsx
2021-09-11 19:06:51 +03:00

13 lines
244 B
TypeScript

import React from "react";
import { Configurator } from "./Configurator";
import "./App.css";
export function App() {
return (
<div className="App">
<div className="wrapper">
<Configurator />
</div>
</div>
);
}