import type { Children } from "@alloy-js/core"; import { For, Indent, Wrap } from "@alloy-js/core"; export interface FunctionCallExpressionProps { target: Children; args?: Children[]; } export function FunctionCallExpression(props: FunctionCallExpressionProps) { return ( {props.target}( 1} with={Indent} props={{ softline: true, trailingBreak: true }} > {(arg) => arg} ) ); }