AIDK API Reference / aidk/jsx / InlineCodeProps
Interface: InlineCodeProps ​
Defined in: packages/core/src/jsx/components/semantic.tsx:212
Inline code component (use <code> for code blocks)
Extends ​
BaseProps
Properties ​
| Property | Type | Description | Inherited from | Defined in |
|---|---|---|---|---|
children? | any | - | - | packages/core/src/jsx/components/semantic.tsx:213 |
key? | string | number | Key for React-like reconciliation (optional). Used by compiler to track component instances across renders. | BaseProps.key | packages/core/src/jsx/jsx-types.ts:22 |
ref? | string | Reference name for accessing this component instance. Use com.getRef<ComponentType>('myRef') to access the instance. Example <Fork ref="myFork" input={forkInput} /> const fork = com.getRef<ForkComponent>('myFork'); | BaseProps.ref | packages/core/src/jsx/jsx-types.ts:16 |