import React from 'react' class Index extends React.Component { state = { raiseError: false } componentDidUpdate () { if (this.state.raiseError) { throw new Error('Houston, we have a problem') } } raiseError = () => this.setState({ raiseError: true }) render () { return (

Index page

) } } export default Index