Aktualizovat sk1/frontend/src/App.jsx

This commit is contained in:
Tetiana Mohorian 2025-04-28 23:04:04 +00:00
parent b38b69af96
commit 2648aa831f

View File

@ -6,16 +6,15 @@ import Footer from './components/Footer';
import './App.css';
const App = () => {
const handleSendMessage = (message) => {
console.log('Отправлено сообщение:', message);
};
return (
<div className="app-container">
<div className="app-container flex flex-col min-h-screen">
<Header />
<InfoBox />
<main className="flex-grow flex flex-col items-center justify-start mt-8 px-4">
<InfoBox />
</main>
<Footer />
</div>
);
};