mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-18 15:00:00 +00:00
13 lines
244 B
TypeScript
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>
|
|
);
|
|
}
|