import { Component, Show } from "solid-js"; export const VcfHeaderRow: Component<{ value: string | null; title: string; }> = (props) => { return ( {props.title}: {props.value} ); };