Modal with #Bulma, #ReactJS & #TypeScript interface iModal { isActive: boolean, children: any } const Modal = ({ isActive, children }: iModal) => <div className={`modal ${isActive ? 'is-active' : ''}`} > { children } </div> #100DaysOfCode #FrontEnd #Software #programming
0
13
8
0
0