UNPKG

framework7-cli

Version:
15 lines (12 loc) 306 B
import React from 'react'; import { Page, Navbar, Block } from 'framework7-react'; const NotFoundPage = () => ( <Page> <Navbar title="Not found" backLink /> <Block strong inset> <p>Sorry</p> <p>Requested content not found.</p> </Block> </Page> ); export default NotFoundPage;