ファイル
btrc-hub/frontend/src/pages/NotFound.tsx
T
2026-05-11 03:32:47 +09:00

9 行
166 B
TypeScript

import type { FC } from 'react'
import ErrorScreen from '@/components/ErrorScreen'
const NotFound: FC = () => <ErrorScreen status={404}/>
export default NotFound