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

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

Initial commit

  • Property mode set to 100644
File size: 228 bytes
RevLine 
[d24f17c]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.