Documentation

type ViewBuilderFunction

A type of function that returns a view builder, often provided with the same type of view builder as an argument.

type ViewBuilderFunction<TResult extends ViewBuilder, TArg = TResult> = (
arg: TArg,
) => TResult;