2020-03-27 13:59:38 -07:00
|
|
|
import React from 'react';
|
2022-01-10 14:25:06 -08:00
|
|
|
|
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;
|