import { useState } from 'react'; import { Button, Card, Field, Heading, Input, Select, Tile, VStack } from '@cdx-ui/components'; import { subcategories } from './data'; export function CreateCategoryCard() { const [txType, setTxType] = useState('expense'); const [subcat, setSubcat] = useState(undefined); return ( Create category Transaction type Expense Income Category name This is the name of the category you want to create. Subcategory of ); }