import React from 'react' import withSentry from '../components/withSentry' class Index extends React.Component { static getInitialProps (context) { const { isServer } = context return { isServer } } onClickHandler () { throw new Error('woops') } render () { return (

Index page

) } } export default withSentry(Index)