Skip to content

Instantly share code, notes, and snippets.

@chathuranga94
Created July 20, 2019 06:28
Show Gist options
  • Save chathuranga94/fc3d25dd0735d6fd56908026a653ea10 to your computer and use it in GitHub Desktop.
Save chathuranga94/fc3d25dd0735d6fd56908026a653ea10 to your computer and use it in GitHub Desktop.
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