import React from 'react'; import classNames from 'classnames'; type VariantProps = { isSelected: boolean; onChangeVariant: (id: string) => void; } & TestVariant; const Variant: React.FC = ({ id, name, isSelected, onChangeVariant, }: VariantProps) => (
  • ); export default Variant;