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;