import type { FC } from 'react' import { useSchemaOrThrow } from '../../../../../../stores' import { TableNode } from '../../../ERDContent/components' import styles from './CommandPalettePreview.module.css' type Props = { tableName: string } export const TablePreview: FC = ({ tableName }) => { const schema = useSchemaOrThrow() const table = schema.current.tables[tableName] return (
{table && ( )}
) }