Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Children } from 'react';
const ButtonRow = ( { children } ) => {
const className =
Children.count( children ) === 1
? 'guided-tours__single-button-row'
: 'guided-tours__choice-button-row';
return <div className={ className }>{ children }</div>;
};
export default ButtonRow;