~cytrogen/masto-fe

ref: 44a7d87cb1f5df953b6c14c16c59e2e4ead1bcb9 masto-fe/app/javascript/mastodon/features/generic_not_found/index.jsx -rw-r--r-- 266 bytes
44a7d87c — Renaud Chaput Rename JSX files with proper `.jsx` extension (#23733) 3 years ago
                                                                                
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 fullPage />
  </Column>
);

export default GenericNotFound;