@orfeas126/box-ui-elements
Version:
Box UI Elements
14 lines (11 loc) • 334 B
JavaScript
/**
* @flow
* @file Function to render the date table cell
* @author Box
*/
import * as React from 'react';
import Date from './Date';
import type { BoxItem } from '../../common/types/core';
export default () => ({ dataKey, rowData }: { dataKey: string, rowData: BoxItem }) => (
<Date dataKey={dataKey} item={rowData} />
);