Last updated
type Sections = "section1" | "section2" | "section3";const pagePath = "/dashboard"; {currentSection === "section1" && <Heading size="md">Section</Heading>}
{currentSection === "section2" && <Heading size="md">Layout</Heading>}
{currentSection === "section3" && (
<Heading size="md">Box model</Heading>
)}
{/* add more sections here */}{currentPage === Routes.dashboard && <SecondarySidebarPages />}