import { Component, JSX } from "solid-js" interface HintRowProps { children: JSX.Element class?: string ariaHidden?: boolean } const HintRow: Component = (props) => { return ( {props.children} ) } export default HintRow