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