Skip to content

Instantly share code, notes, and snippets.

@pavinduLakshan
Last active May 12, 2020 11:39
Show Gist options
  • Save pavinduLakshan/1664492b4c3fcd85b7785a4d3b7a77b6 to your computer and use it in GitHub Desktop.
Save pavinduLakshan/1664492b4c3fcd85b7785a4d3b7a77b6 to your computer and use it in GitHub Desktop.
import React, { useState } from 'react'
const Component1 = props => {
return <p>{props.theme}</p>
}
const Component2 = props => {
return <Component1 theme={props.theme}/>
}
const Component3 = () => {
const [theme,setTheme] = useState("default")
return (
<div>
<Component2 theme={theme}/>
</div>
)
}
export default Component3;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment