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