import { Children } from 'react'; const ButtonRow = ( { children } ) => { const className = Children.count( children ) === 1 ? 'guided-tours__single-button-row' : 'guided-tours__choice-button-row'; return
{ children }
; }; export default ButtonRow;