import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs'; import { Text } from '@/components/ui/text'; import { View } from '@/components/ui/view'; import { useState } from 'react'; export function TabsStyled() { const [value, setValue] = useState('design'); return ( Design Development Testing Design Phase Create wireframes, mockups, and design systems for your project. Development Phase Build and implement the features based on the design specifications. Testing Phase Perform quality assurance and user acceptance testing. ); }