Files
30-seconds-of-code/snippet-template.md
Angelos Chalaris eb9a2dfaef Snippet template proposal
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.
2018-10-09 19:12:21 +03:00

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>;
  }
}