Files
supabase/studio/components/interfaces/TableGridEditor/NotFoundState.tsx
Joshen Lim 9373f69220 Studio 🎙
2021-11-26 11:15:00 +05:30

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