//ts-nocheck import React, { FC, forwardRef, memo } from 'react'; import { cn } from '../../util/bem'; import { Title } from '../title/title.component'; import './input-table.component.scss'; export type InputTableProps = { className?: string; children?: React.ReactNode; style?: React.CSSProperties; title?: React.ReactNode; } const className = cn('input-table'); export const InputTable: FC = memo(forwardRef((props, ref) => (
{ props.title && (
{ props.title }
) }
{ props.children }
)));