Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
import './indicator-bullet.scss'; export const Indicator = ( props ) => { let className = 'eps-indicator-bullet'; if ( props.active ) { className += ` ${ className }--active`; } return ; }; Indicator.propTypes = { active: PropTypes.bool, };
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!