rce
import React, { Component } from 'react'
export class App extends Component {
render() {
return (
<div>
</div>
)
}
}
export default App
rconst
constructor(props) {
super(props)
this.state = {
}
}
sst
this.setState({
})
bnd
this.methodName = this.methodName.bind(this)
imp
import moduleName from 'module'
enf
export const functionName = (params) => {
}
网友评论