The toast component is basically an alert box that is only visible for a couple of seconds when something happens (i.e. when the user clicks on a button, submits a form, etc.).
==== button mukavu ====
How To Create a Toast
Use the .toast classand include a .toast-headerand .toast-body to construct a toast.
Note: By default, toasts are hidden. If you wish to display it, use the .show class. Use a <button> element and add data-bs-dismiss=”toast” to close it:
Toast Header
Some text inside the toast body
Open a Toast
You must initialize it with JavaScript in order for a button click to display a toast: Call the toast() function after selecting the designated element.
When you click a button, the following code will display all of the “toasts” in the document: