mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
13 lines
314 B
TypeScript
13 lines
314 B
TypeScript
import * as React from 'react'
|
|
import SideBar from 'components/SideBar'
|
|
import { raiseError } from 'analytics'
|
|
|
|
export default class Gitako extends React.PureComponent {
|
|
componentDidCatch(error: Error, errorInfo: React.ErrorInfo) {
|
|
raiseError(error, errorInfo)
|
|
}
|
|
|
|
render() {
|
|
return <SideBar />
|
|
}
|
|
}
|