import { Component, Show } from "solid-js"; import { CellValueVipCS } from "../../../types/configCellComposed"; import { Abbr } from "../../Abbr"; export const FieldVipCS: Component<{ value: CellValueVipCS; }> = (props) => { return ( {props.value.vipCS!.label}} keyed> {(vipPSItem) => } ); };