2020-08-17 15:07:16 -05:00
|
|
|
import React from 'react'
|
2020-04-28 22:24:35 -04:00
|
|
|
import ColumnIndicator from '../components/column_indicator'
|
2019-08-13 11:54:29 -04:00
|
|
|
|
2020-08-17 15:07:16 -05:00
|
|
|
export default class GenericNotFound extends React.PureComponent {
|
2019-08-13 11:54:29 -04:00
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<ColumnIndicator type='missing' />
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|