(children, properties)
| 55 | }; |
| 56 | |
| 57 | const figure = (children, properties) => { |
| 58 | return { |
| 59 | type: "container", |
| 60 | children, |
| 61 | data: { |
| 62 | hName: "figure", |
| 63 | hProperties: properties |
| 64 | } |
| 65 | }; |
| 66 | }; |
| 67 | |
| 68 | const figcaption = (children, properties) => { |
| 69 | return { |
no outgoing calls
no test coverage detected