import { Component, Match, Switch } from "solid-js"; import { FieldLocus } from "./FieldLocus"; import { FieldVipC } from "./FieldVipC"; import { FieldGenotype } from "./FieldGenotype"; import { FieldGene } from "./FieldGene"; import { ErrorNotification } from "../../ErrorNotification"; import { FieldClinVar } from "./FieldClinVar"; import { FieldConfidenceInterval } from "./FieldConfidenceInterval"; import { FieldSpanningReads } from "./FieldSpanningReads"; import { FieldGnomAd } from "./FieldGnomAd"; import { FieldHpo } from "./FieldHpo"; import { ConfigCellCustom } from "../../../types/configCells"; import { CellValueClinVar, CellValueConfidenceInterval, CellValueCustom, CellValueGene, CellValueGenotype, CellValueGnomAd, CellValueHpo, CellValueInheritanceModes, CellValueLocus, CellValueSpanningReads, CellValueVipC, CellValueVipCS, CellValueVkgl, } from "../../../types/configCellComposed"; import { FieldVkgl } from "./FieldVkgl"; import { FieldInheritanceModes } from "./FieldInheritanceModes"; import { FieldVipCS } from "./FieldVipCS.tsx"; export const FieldComposed: Component<{ config: ConfigCellCustom; value: CellValueCustom; }> = (props) => { const id = () => props.config.id; return ( }> ); };