about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/generic_not_found/index.js
blob: 0290be47f9a4f0376d2a8d13f006f28421087ea9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import React from 'react';
import Column from '../ui/components/column';
import MissingIndicator from '../../components/missing_indicator';

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

export default GenericNotFound;