UNPKG

@workday/canvas-kit-react

Version:

The parent module that contains all Workday Canvas Kit React components

9 lines (8 loc) 345 B
import React from 'react'; import { createComponent } from '@workday/canvas-kit-react/common'; export const BaseTableFooter = createComponent('tfoot')({ displayName: 'Table.Footer', Component: ({ children, ...elemProps }, ref, Element) => { return (React.createElement(Element, { ref: ref, ...elemProps }, children)); }, });