@tempots/dom

UseProviders() function

Creates a renderable function that consumes providers and renders a TNode.

Signature:

UseProviders: <T extends unknown[]>(marks: ToArrayOfMarks<T>, fn: (providers: ToProviders<T>) => TNode) => Renderable

Parameters

Parameter

Type

Description

marks

ToArrayOfMarks<T>

The marks to be converted to an array of marks.

fn

(providers: ToProviders<T>) => TNode

The function that takes providers and returns a TNode.

Returns: Renderable

A renderable function that consumes providers and renders a TNode.