Files
2018-08-02 17:53:23 +01:00

8 lines
183 B
JavaScript

class Component extends React.Component {
constructor(props) {
super(props);
this.state = {};
this.updater = () => this.state.title = 'new title';
}
}