// @flow import React from 'react'; import { components } from '../../wp'; import './VariantSelector.css'; const { ButtonGroup, IconButton, } = components; type VariantSelectorProps = { variants: ABTestVariant[]; onSelectVariant: (id: string) => void; } function VariantSelector({ variants, onSelectVariant }: VariantSelectorProps) { return (