Skip to content

Instantly share code, notes, and snippets.

@jasminegmp
Created February 22, 2020 18:46
Show Gist options
  • Save jasminegmp/13a31d3d845a42880713ae02797c6016 to your computer and use it in GitHub Desktop.
Save jasminegmp/13a31d3d845a42880713ae02797c6016 to your computer and use it in GitHub Desktop.
import React from 'react';
function Parent(){
const data = 'Data from parent';
return(
<div>
<Child dataParentToChild = {data}/>
</div>
)
}
function Child ({dataParentToChild}){
return(
<div>
{dataParentToChild}
</div>
)
}
export default Parent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment