import { FC } from 'react'; import { ComponentParameter, UniformText } from '@uniformdev/next-app-router/component'; import { withFlattenParameters } from '@/utils/withFlattenParameters'; import { TableDataCellParameters, TableDataCellProps } from '.'; const TableDataCell: FC = ({ parameters, component }) => ( } placeholder="Value" /> ); export default withFlattenParameters(TableDataCell);