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

9 行
168 B
TypeScript

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