# FunctionCallExpression

* jsx

  ```tsx
  import { FunctionCallExpression } from "@alloy-js/typescript";


  <FunctionCallExpression args={Children[]} target={Children} />
  ```

* stc

  ```ts
  import { FunctionCallExpression } from "@alloy-js/typescript/stc";


  FunctionCallExpression({
    args: Children[],
    target: Children,
  }).children(children)
  ```

## Props

|        |                                                      |   |
| ------ | ---------------------------------------------------- | - |
| args   | optional[Children](../../../core/types/children/)\[] |   |
| target | [Children](../../../core/types/children/)            |   |
