/** * Select Variants Demo * Shows different select configurations */ import React, { useState } from 'react' export default function SelectVariantsDemo() { const [selected, setSelected] = useState('') return (

Select Configurations

{/* Basic Select */}
{/* With Labels */}
{/* Controlled Select */}

Selected: {selected || '(none)'}

{/* Disabled Select */}
{/* With Separators */}
{/* Multiple Select */}
) }