react toasts1 [React] react-toasts 를 사용하여 toast popup 띄우기-떽떽대는 개발공부 사용법 먼저 react-toasts 모듈을 install 해준다. npm install -s react-toasts 인스톨이 완료되면 아래와 같이 import 해준 후 코드를 작성한다. import React, {Component} from 'react'; import {ToastsContainer, ToastsStore, ToastsContainerPosition} from 'react-toasts'; class Main extends Component { onClickToastPopup(){ ToastsStore.success("This is ToastPopup"); } render(){ return( Toast Popup Toast ); } } export default Main; Toast 버튼을.. 2021. 1. 5. 이전 1 다음