@workday/canvas-kit-react
Version:
The parent module that contains all Workday Canvas Kit React components
9 lines (8 loc) • 336 B
JavaScript
import React from 'react';
import { createComponent } from '@workday/canvas-kit-react/common';
export const BaseTableRow = createComponent('tr')({
displayName: 'Table.Row',
Component: ({ children, ...elemProps }, ref, Element) => {
return (React.createElement(Element, { ref: ref, ...elemProps }, children));
},
});