class ExampleComponent extends React.Component { constructor(props) { super(props); this.state = { }; } render() { return ( This is a view created by a class component ); } }