Resolves #4. This is the snippet template that we have sort of decided on over the last couple of weeks. Please comment below so we can conclude on a format and start working on #1.
457 B
457 B
componentName
Explain briefly what the snippet does.
Explain briefly how the snippet works.
function componentName(props) {
return <div>{props}</div>;
};
class componentName extends React.Component {
constructor(props){}
render(){
return <div>{props}</div>;
}
}