Files
asan-installer-front/src/App.tsx
T
Alihaghighattalab 02bd8ba075 complete home page
2024-08-06 16:24:04 +03:30

14 lines
264 B
TypeScript

import { Imei } from "./components/home/imei";
import { StatusBox } from "./components/home/status-box";
function App() {
return (
<div className="flex flex-col gap-y-[30px] w-full">
<StatusBox />
<Imei />
</div>
);
}
export default App;