14 | {
15 | sections.map((section, i) => {
16 | return
17 | {
18 | section.title && section.title !== "" ?
{section.title}
: undefined
19 | }
20 |
21 |
22 | {
23 | section.rows?.map((row, j) => {
24 | return
25 |
26 |
27 | })
28 | }
29 |
30 |
31 | {
32 | section.subtitle && section.subtitle !== "" ?
33 | {section.subtitle }
34 |
: undefined
35 | }
36 |