How to use the terra-table.Row function in terra-table

To help you get started, we’ve selected a few terra-table examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github cerner / terra-framework / packages / terra-infinite-table / src / InfiniteTable.jsx View on Github external
{rowContent}
          
        
        {newChildren}
      
    );
  }
}

InfiniteTable.propTypes = propTypes;
InfiniteTable.defaultProps = defaultProps;
InfiniteTable.Rows = Table.Rows;
InfiniteTable.Header = Table.Header;
InfiniteTable.HeaderCell = Table.HeaderCell;
InfiniteTable.Row = Table.Row;
InfiniteTable.Cell = Table.Cell;
InfiniteTable.Subheader = Table.Subheader;

export default InfiniteTable;