import React from 'react'; import { ICellProps } from '../index'; export default function DateCell({ cell }: ICellProps) { const { value = '' } = cell; return {(new Date(value)).toLocaleString()} ; }