rsnext/test/integration/basic/lib/cdm.js
Connor Davis fcf1167cd4 Upgrade standard and fix files (#6358)
Upgrades `standard` to major version 12
2019-02-19 22:45:07 +01:00

19 lines
361 B
JavaScript

import React, { Component } from 'react'
export default class extends Component {
constructor (props) {
super(props)
this.state = {
mounted: false
}
}
componentDidMount () {
this.setState({ mounted: true })
}
render () {
return <p>ComponentDidMount {this.state.mounted ? 'executed on client' : 'not executed'}.</p>
}
}