ReactJS in WP(wp.elemet)
-
Hello everybody, example from official react site
class Clock extends React.Component { constructor(props) { super(props); this.state = {date: new Date()}; } componentDidMount() { this.timerID = setInterval( () => this.tick(), 1000 ); } componentWillUnmount() { clearInterval(this.timerID); } tick() { this.setState({ date: new Date() }); } render() { return ( <div> <h1>Hello, world!</h1> <h2>It is {this.state.date.toLocaleTimeString()}.</h2> </div> ); } } ReactDOM.render( <Clock />, document.getElementById('root') );how this code will be looked when i call wp.element?
what features of reactjs are saved?
how get WP REST API link to get JSON data?Thx for help
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘ReactJS in WP(wp.elemet)’ is closed to new replies.