| 1 | import type { ReactElement } from 'react' |
| 2 | |
| 3 | interface Properties { |
| 4 | error?: Error |
| 5 | } |
| 6 | export default function LoadingOrError({ error }: Properties): ReactElement { |
| 7 | return ( |
| 8 | <div className='flex min-h-screen flex-col items-center justify-center'> |
nothing calls this directly
no outgoing calls
no test coverage detected