Skip to content

Instantly share code, notes, and snippets.

@Biruntha
Created June 6, 2020 14:46
import React, { Component } from 'react';
Import Greet from ‘./Greet
class App extends Component{
render(){
return(
<div>
<Greet name="Bruce" heroName="Batman">
<p>This is a children props</p>
</Greet>
<Greet name="Clark" heroName="Superman"/>
<Greet name="Diana" heroName="Wonder woman"/>
</div>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment