source:
my-react-app/src/components/Layout.js@
65b6638
Last change on this file since 65b6638 was d24f17c, checked in by , 15 months ago | |
---|---|
|
|
File size: 228 bytes |
Line | |
---|---|
1 | // Layout.js |
2 | import React from 'react'; |
3 | import Header from './Header'; |
4 | |
5 | const Layout = ({ children }) => { |
6 | return ( |
7 | <div> |
8 | <Header /> |
9 | {children} |
10 | </div> |
11 | ); |
12 | } |
13 | |
14 | export default Layout; |
Note:
See TracBrowser
for help on using the repository browser.