43e384554c
• Remove: - React, PureComponent global import and added those imports to files directly
13 lines
236 B
JavaScript
13 lines
236 B
JavaScript
import React from 'react'
|
|
import ColumnIndicator from '../components/column_indicator'
|
|
|
|
export default class GenericNotFound extends React.PureComponent {
|
|
|
|
render() {
|
|
return (
|
|
<ColumnIndicator type='missing' />
|
|
)
|
|
}
|
|
|
|
}
|