UNPKG

metadata-based-explorer1

Version:
14 lines (10 loc) 245 B
/** * @flow * @file Function to render the name table cell */ import React from 'react'; import IconName from './IconName'; type Props = { rowData: UploadItem, }; export default () => ({ rowData }: Props) => <IconName {...rowData} />;