import { Button, Card, Flex, MultiSelectFieldSync, SelectFieldSync, SelectMenuSync, } from '@servicetitan/anvil2'; import { FC } from 'react'; import '../anvil2.css'; const options = [ { id: 1, label: "Option One" }, { id: 2, label: "Option Two" }, { id: 3, label: "Option Three" }, ]; export const SelectCard: FC<{ className?: string }> = ({ className }) => (
{}} />
{}} /> {}} trigger={(props) => ( )} />
);