The code powering m.abunchtell.com https://m.abunchtell.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

12 行
266 B

  1. import React from 'react';
  2. import Column from '../ui/components/column';
  3. import MissingIndicator from '../../components/missing_indicator';
  4. const GenericNotFound = () => (
  5. <Column>
  6. <MissingIndicator fullPage />
  7. </Column>
  8. );
  9. export default GenericNotFound;