Created
July 20, 2019 06:28
-
-
Save chathuranga94/fc3d25dd0735d6fd56908026a653ea10 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
const App = () => { | |
return <Menu colour="blue" language="en" />; | |
} | |
function Menu(props) { | |
return( | |
<MenuItem | |
colour={props.colour} | |
language={props.language} | |
/> | |
) | |
} | |
function MenuItem(props) { | |
return( | |
<div> | |
<p>Theme colour: {props.colour}</p> | |
<p>Locale: {props.language}</p> | |
</div> | |
); | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment