* Generate Text component definition
(id: string, text: string)
| 53 | * Generate Text component definition |
| 54 | */ |
| 55 | function createTextComponent(id: string, text: string): ComponentDefinition { |
| 56 | return { |
| 57 | id, |
| 58 | component: { Text: { text: { literalString: text } } }, |
| 59 | }; |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Generate Column component with children |
no outgoing calls
no test coverage detected