about summary refs log tree commit diff
path: root/app/assets/javascripts/components/features/generic_not_found/index.jsx
blob: a7afe29b0aef719b622e5991b65bb364cad63713 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import Column from '../ui/components/column';
import MissingIndicator from '../../components/missing_indicator';

const GenericNotFound = () => (
  <Column>
    <MissingIndicator />
  </Column>
);

export default GenericNotFound;