---
sidebar_position: 2
---
# Vertical Tabs Feature

```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" && (
)}
{tab == "2" && (
)}
{tab == "3" && (
)}
{/* End Tab Content */}
{/* SVG Element */}
{/* End SVG Element */}
{/* End Col */}
{/* End Grid */}
{/* Background Color */}
{/* End Background Color */}
{/* End Features */}
>
);
```