import { type ComponentProps, Show } from "solid-js"; import { Portal } from "solid-js/web"; import { useSelectContext } from "./select-context"; export interface SelectPortalProps extends ComponentProps {} /** * Portals its children into the `body` when the select is open. */ export function SelectPortal(props: SelectPortalProps) { const context = useSelectContext(); return ( ); }