|
|
|
|
|
by renesd
3362 days ago
|
|
Everything in react is done in the template language. This react below is not JavaScript... it's a reverse template language with a mix of not-quite-html and not-quite-JavaScript. jQuery style code is nicer than that! I hate the enterprise boilerplate in react projects. No wonder they're all failing! class Square extends React.Component {
constructor() {
super();
this.state = {
value: null,
};
}
render() {
return (
<button className="square" onClick={() => this.setState({value: 'X'})}>
{this.state.value}
</button>
);
}
}
It's like facebook is a php shop or something... Oh wait. Not for me thanks. |
|
Or could you not hear me over the sound of that axe you're grinding? :)