import React from 'react'; import { ICellProps } from '../index'; export default function JSONCell({ cell }: ICellProps) { const { value = '' } = cell; return
    {JSON.stringify(value, null, 2)}
  
; }