Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
at main 216 B view raw
1import React from 'react'; 2import Docs from '../docs'; 3import NotFoundPage from './404'; 4 5const NotFound = () => { 6 return ( 7 <Docs isLoading> 8 <NotFoundPage /> 9 </Docs> 10 ); 11}; 12 13export default NotFound;