*
*/
import * as React from 'react';
import classNames from 'classnames';
import Cell from '../Cell';
import { ComponetizedRow } from '../../types/editable';
const Inner = ({
editable,
ancestors,
node: { id, hover, cells = [], hasInlineChildren },
containerHeight,
blurAllCells,
containerWidth,
}: ComponetizedRow) => (
{cells.map((c: string) => (
|
))}
);
export default Inner;