<SectionContent />

The SectionContent component is used to renders any section, in RapidLaunch.it you can render any page directly from the config/sections.ts file

example

export default {
    hero: {
        sections: [
            { id: 'section-hero', component: 'SectionHero' },
        ]
    },
}

The component is located in the @/components/global/Section/Content directory. To use the component, import it into your file:

import SectionContent from '/components/global/Section/Content';

Usage

To use the component, add it to your template:

<SectionContent />

Config

For configuration's component, visit Config documentation.

Table of Contents