Add error handling to status components
parent
7c40496e2d
commit
c5fd5b1ac2
|
@ -1,7 +1,9 @@
|
|||
import React, {Component} from 'react'
|
||||
|
||||
import FancyScrollbar from 'shared/components/FancyScrollbar'
|
||||
import {ErrorHandling} from 'src/shared/decorators/errors'
|
||||
|
||||
@ErrorHandling
|
||||
class GettingStarted extends Component {
|
||||
constructor(props) {
|
||||
super(props)
|
||||
|
|
|
@ -7,7 +7,9 @@ import {fetchJSONFeedAsync} from 'src/status/actions'
|
|||
|
||||
import FancyScrollbar from 'shared/components/FancyScrollbar'
|
||||
import JSONFeedReader from 'src/status/components/JSONFeedReader'
|
||||
import {ErrorHandling} from 'src/shared/decorators/errors'
|
||||
|
||||
@ErrorHandling
|
||||
class NewsFeed extends Component {
|
||||
constructor(props) {
|
||||
super(props)
|
||||
|
|
|
@ -7,7 +7,9 @@ import FancyScrollbar from 'shared/components/FancyScrollbar'
|
|||
import LayoutRenderer from 'shared/components/LayoutRenderer'
|
||||
|
||||
import {fixtureStatusPageCells} from 'src/status/fixtures'
|
||||
import {ErrorHandling} from 'src/shared/decorators/errors'
|
||||
|
||||
@ErrorHandling
|
||||
class StatusPage extends Component {
|
||||
constructor(props) {
|
||||
super(props)
|
||||
|
|
Loading…
Reference in New Issue