Skip to content

Instantly share code, notes, and snippets.

@dipakkr
Last active December 16, 2019 19:14
Show Gist options
  • Save dipakkr/6ee9830ee71b36a0edb52d659c423823 to your computer and use it in GitHub Desktop.
Save dipakkr/6ee9830ee71b36a0edb52d659c423823 to your computer and use it in GitHub Desktop.
import React from 'react'
import ChildComponent from './ChildComponent';
class ParentComponent extends React.Component {
render(){
return(
<div>
<ChildComponent message="Data from first component"/>
</div>
);
}
}
export default ParentComponent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment