import React from 'react'; type PropertyFunction = () => T; // TODO: Convert to generic so `name` can be a type interface Column { name: string; label: string | PropertyFunction | React.ReactNode; columnLabel?: string; isSortable?: boolean; isVisible: boolean; isModifiable?: boolean; } export default Column;