export default function defaultFormatter(value: T) { if (value === null || value === undefined) return ''; return `${value}`; }