bigbuffet-rw/app/soapbox/features/generic_not_found/index.js

10 lines
187 B
JavaScript
Raw Normal View History

2020-03-27 13:59:38 -07:00
import React from 'react';
2020-03-27 13:59:38 -07:00
import MissingIndicator from '../../components/missing_indicator';
const GenericNotFound = () => (
2022-03-21 11:09:01 -07:00
<MissingIndicator />
2020-03-27 13:59:38 -07:00
);
export default GenericNotFound;