To do a switch case in JSX do it as follow:
{{
sectionA: (
<SectionAComponent />
),
sectionB: (
<SectionBComponent />
),
sectionC: (
<SectionCComponent />
),
default: (
<SectionDefaultComponent />
)
}[section]}