import { Component, For } from "solid-js"; import { CellValueFormat } from "../../types/configCells"; export const FieldFormat: Component<{ value: CellValueFormat }> = (props) => { return ( <> {(formatKey) => {formatKey}} ); };