mirror of
https://github.com/supabase/supabase.git
synced 2026-07-03 19:54:38 +08:00
16 lines
300 B
TypeScript
16 lines
300 B
TypeScript
import { FC } from 'react'
|
|
|
|
interface Props {
|
|
id: string | number
|
|
}
|
|
|
|
const NotFoundState: FC<Props> = ({ id }) => {
|
|
return (
|
|
<div className="flex items-center justify-center h-full">
|
|
<p>Oops! Unable to find your table with the ID {id}</p>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default NotFoundState
|