import { useState } from 'react'; import { Avatar, Text, Tile, VStack } from '@cdx-ui/components'; import { AccountBalance, Savings } from '@cdx-ui/icons'; import { SECTION_LABEL } from './data'; export function TransferToSection() { const [selected, setSelected] = useState('checking'); return ( Transfer to Family Checking ···· 4642 · $2,814.66 Family Savings ···· 5541 · $3,400.22 ); }