import { Typography } from '@supabase/ui' import { FC } from 'react' interface Props { id: string | number } const NotFoundState: FC = ({ id }) => { return (
Oops! Unable to find your table with the ID {id}
) } export default NotFoundState