Skip to content
Snippets Groups Projects
dateFormatter.ts 215 B
Newer Older
  • Learn to ignore specific revisions
  • import { ValueFormatterParams } from 'ag-grid-community'
    import { DateTime } from 'luxon'
    
    export const dateFormatter = (data: ValueFormatterParams): string => {
      return (data.value as DateTime).toLocaleString()
    }