UNPKG

react-raise

Version:

a react cli starter kit that bootstraps a react application

14 lines (12 loc) 260 B
import React from 'react'; /** * NotFound - renders a 404 page; * @returns {Object} React element to render */ export default function NotFound() { return ( <div className="full-height flex-center position-ref"> <h1>404!</h1> </div> ); }