/** * @flow * @file Function to render the name table cell * @author Box */ import * as React from 'react'; import Name from './Name'; import type { View, BoxItem } from '../../../common/types/core'; export default ( rootId: string, view: View, onItemClick: Function, onItemSelect?: Function, canPreview: boolean = false, showDetails: boolean = true, isTouch: boolean = false, ) => ({ rowData }: { rowData: BoxItem }) => ( );