import React from 'react'; import '../css/app.less'; import homeImage from '../html/home.png'; export default class MainView extends React.Component { constructor(props) { super(props); this.state = { name : props.name } } onSetName = () => { this.setState({ name : this.refs.nameTxt.value }) } render() { return
Hello {this.state.name} !

Enter Name:

- Example of loaging image with webpack image loader

} }