Answers for "toastify js"

1

toastify js

<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js"></script>
Posted by: Guest on March-08-2020
0

toastify

import React from 'react';

  import { ToastContainer, toast } from 'react-toastify';
  import 'react-toastify/dist/ReactToastify.css';
  
  function App(){
    const notify = () => toast("Wow so easy!");

    return (
      <div>
        <button onClick={notify}>Notify!</button>
        <ToastContainer />
      </div>
    );
  }
Posted by: Guest on May-06-2021
0

notify js

$.notify("BOOM!", "error");
Posted by: Guest on December-19-2019

Code answers related to "Javascript"

Browse Popular Code Answers by Language