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