Lulala Chen
const Component = (props) => ( <div>{props.someStuff}</div> ) class Component extend React.Component { render() { return <div>{this.props.someStuff}</div> } }
By Lulala Chen
It's Lulalachen