UNPKG

@aigamo/hydrangean-diva

Version:

An open-source online media player that can be deployed to and hosted on GitHub pages.

8 lines (7 loc) 318 B
import { JSXElementConstructor, PropsWithChildren, ReactElement, ReactNode } from 'react'; interface ComposeProps { components: Array<JSXElementConstructor<PropsWithChildren<unknown>>>; children?: ReactNode; } export declare const Compose: ({ components, children, }: ComposeProps) => ReactElement; export {};