mirror of https://github.com/sgoudham/carbon.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
984 B
JavaScript
42 lines
984 B
JavaScript
// Theirs
|
|
import React from 'react'
|
|
import { withRouter } from 'next/router'
|
|
import { register, unregister } from 'next-offline/runtime'
|
|
import Either from 'eitherx'
|
|
|
|
// Ours
|
|
import EditorContainer from '../components/EditorContainer'
|
|
import Page from '../components/Page'
|
|
import { MetaLinks } from '../components/Meta'
|
|
|
|
class Index extends React.Component {
|
|
componentDidMount() {
|
|
register()
|
|
}
|
|
componentWillUnmount() {
|
|
unregister()
|
|
}
|
|
|
|
shouldComponentUpdate = () => false
|
|
|
|
render() {
|
|
return (
|
|
<Page enableHeroText={true} flex={true}>
|
|
<MetaLinks />
|
|
<Either>
|
|
<EditorContainer router={this.props.router} snippet={this.props.snippet} />
|
|
<p>
|
|
An unexpected error has occurred. Please{' '}
|
|
<u>
|
|
<a href="https://github.com/carbon-app/carbon">file an issue here</a>
|
|
</u>
|
|
.
|
|
</p>
|
|
</Either>
|
|
</Page>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default withRouter(Index)
|