A fixed-position container that holds and lays out one or more bs_toast()s.
Examples
bs_toast_container(
bs_toast("hello", "Hi there", title = "Greeting"),
placement = "top-end"
)
#> <div class="toast-container position-fixed p-3 top-0 end-0">
#> <div id="hello" class="toast" role="alert" aria-live="assertive" aria-atomic="true" data-bootstrict="toast" data-bs-delay="5000">
#> <div class="toast-header">
#> <strong class="me-auto">Greeting</strong>
#> <button type="button" class="btn-close" aria-label="Close" data-bs-dismiss="toast"></button>
#> </div>
#> <div class="toast-body">Hi there</div>
#> </div>
#> </div>