mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-22 18:26:39 +02:00
19 lines
325 B
JavaScript
19 lines
325 B
JavaScript
import React, { useEffect } from 'react';
|
|
|
|
import Footer from './Footer';
|
|
|
|
const Layout = ({ children }) => {
|
|
useEffect(() => {
|
|
window.scrollTo(0, 0);
|
|
}, []);
|
|
|
|
return (
|
|
<div className="mw8 mb5 center">
|
|
{children}
|
|
<Footer />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Layout;
|