zepio/app/views/not-found.js

10 lines
130 B
JavaScript
Raw Normal View History

// @flow
2018-11-23 10:41:50 -08:00
import React from 'react';
export const NotFoundView = () => (
<div className='not found'>
not found
</div>
2018-11-23 10:41:50 -08:00
);