Odstranit sk1/frontend/src/App.jsx

This commit is contained in:
Tetiana Mohorian 2025-04-29 22:42:43 +00:00
parent 703c3ff2aa
commit d25d8fc509

View File

@ -1,22 +0,0 @@
import React from 'react';
import Header from './components/Header';
import InfoBox from './components/InfoBox';
import Footer from './components/Footer';
import './App.css';
const App = () => {
return (
<div className="app-container flex flex-col min-h-screen">
<Header />
<main className="flex-grow flex flex-col items-center justify-start mt-8 px-4">
<InfoBox />
</main>
<Footer />
</div>
);
};
export default App;