source: my-react-app/src/components/Layout.js@ 65b6638

main
Last change on this file since 65b6638 was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 228 bytes
Line 
1// Layout.js
2import React from 'react';
3import Header from './Header';
4
5const Layout = ({ children }) => {
6 return (
7 <div>
8 <Header />
9 {children}
10 </div>
11 );
12}
13
14export default Layout;
Note: See TracBrowser for help on using the repository browser.