Guest User

Untitled

a guest
Jan 19th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. export function showToasterMessage(message,intent) {
  2. console.log(intent); // DANGER
  3. const MyToaster = Toaster.create({
  4. position: Position.BOTTOM
  5. });
  6. return MyToaster.show({message,intent: Intent./* (I want to use intent here) */,timeout : 2500});
  7. }
Add Comment
Please, Sign In to add comment