3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-18 23:09:59 +00:00
zeppelin/presetup-configurator/src/App.tsx

14 lines
244 B
TypeScript
Raw Normal View History

2021-01-18 22:44:54 +02:00
import React from "react";
import { Configurator } from "./Configurator";
import "./App.css";
export function App() {
2021-09-11 19:06:51 +03:00
return (
<div className="App">
<div className="wrapper">
<Configurator />
</div>
2021-01-18 22:44:54 +02:00
</div>
2021-09-11 19:06:51 +03:00
);
2021-01-18 22:44:54 +02:00
}