bigbuffet-rw/app/soapbox/features/generic-not-found/index.tsx

10 lines
187 B
TypeScript
Raw Normal View History

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