import React from "react" import { Column } from "material-table" import { Type } from "./types" export const Columns = ({ t }: any): Column[] => [ { title: t("Name"), field: "name" }, { title: t("Value"), field: "value" }, { title: t("Updated At"), field: "updated_at", editable: "never", grouping: false, render: r => <>{r ? new Date(r.updated_at).toLocaleString() : ""} } ]