UNPKG

metadata-based-explorer1

Version:
13 lines (10 loc) 273 B
/** * @flow * @file Function to render the date table cell * @author Box */ import React from 'react'; import Date from './Date'; export default () => ({ dataKey, rowData }: { dataKey: string, rowData: BoxItem }) => ( <Date dataKey={dataKey} item={rowData} /> );