Answers for "toast react"

1

toast react

// toast in react
// create toast.js component

import { toast } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';

toast.configure()

const options = {
  autoClose: 2000,
  className: '',
  position: toast.POSITION.TOP_RIGHT,
};

export const toastSuccess = message => {
  console.log("Hello0 success toast")
  toast.success(message, options);
}

export const toastError = message => {
  toast.error(message, options);
}

export const toastWarning = message => {
  toast.warn(message, options);
}

export const toastInformation = message => {
  toast.info(message, options);
}

export const toastDark = message => {
  toast.dark(message, options);
}

export const toastDefault = message => {
  toast(message, options);
}

// wherever in need that toast use like this 

import { toastError, toastSuccess } from "./Toast";
toastSuccess("User successfully registered");
toastError("User is not created try again");
Posted by: Guest on August-27-2021
0

react toast

import { ToastProvider } from 'react-toast-notifications';
import { Snack } from '../snackbar';

const App = () => (
  <ToastProvider
    autoDismiss
    autoDismissTimeout={6000}
    components={{ Toast: Snack }}
    placement="bottom-center"
	appearance: 'success',
    autoDismiss: true,
  >
    ...
  </ToastProvider>
);
Posted by: Guest on March-17-2021
0

react native toast

npm install react-native-simple-toast --save
react-native link react-native-simple-toast // only RN < 0.60
cd ios && pod install
Posted by: Guest on July-31-2020
0

react toastr

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/2.1.3/toastr.min.css">
Posted by: Guest on July-09-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language