--- sidebar_position: 2 --- # Vertical Tabs Feature ![Cards](/img/vertical-tabs-feature.png) ```jsx title="Frontend/sections/Features/VerticalTabsFeature.tsx" const [tab, setTab] = useState("1"); return ( <> {/* Features */}
{/* Grid */}

Save 20+ hours of app development with FastPocket

{/* Tab Navs */} {/* End Tab Navs */}
{/* End Col */}
{/* Tab Content */}
{tab == "1" && (
Image Description
)} {tab == "2" && (
Image Description
)} {tab == "3" && (
Image Description
)}
{/* End Tab Content */} {/* SVG Element */}
{/* End SVG Element */}
{/* End Col */}
{/* End Grid */} {/* Background Color */}
{/* End Background Color */}
{/* End Features */} ); ```