React recipes
basic react class component with state and props
Library: react
Shortcut: react.component.with_props
import React from 'react';
class ComponentName extends React.Component {
constructor(props) {
super(props);
this.state = {date: new Date()};
}
render() {
return (
<div>
</div>
);
}
}