Skip to content

Instantly share code, notes, and snippets.

@dipakkr
Created December 16, 2019 19:05
Show Gist options
  • Save dipakkr/8509879ecdcff4ca1a39bccb6e3e1465 to your computer and use it in GitHub Desktop.
Save dipakkr/8509879ecdcff4ca1a39bccb6e3e1465 to your computer and use it in GitHub Desktop.
import React from 'react';
const ChildComponent = (props) => {
return(
<h2> {props.message} </h2>
);
}
export default ChildComponent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment