Show beatiful notifications with tailwindcss
npm install tailwind-toastify
npm install tailwind-toastify
`
Requirements
Have tailwindcss 3.x installed in your react project. Tailwindcss
Demo
Demo in codesandbox
Demo online
Usage
`
import React from 'react';
import { showAlert } from 'tailwind-toastify';
export default function ShowAlertExampleApp(){
const handleShowAlert = (type, title, message) => {
showAlert(type, title, message);
}
return(
<>
>
)
}
``