yesod-alerts-0.1.0.0: src/Yesod/Alert/Bootstrap3.hs
-- | Render 'Alert's using Bootstrap v3.x
--
-- Dependencies (These should be accessible in your app):
--
-- * Bootstrap's CSS and JS
--
-- * JQuery >= 1.12.4
module Yesod.Alert.Bootstrap3
( renderAlertsBootstrap3
) where
import Text.Blaze
import Web.Alert
import qualified Web.Alert.Renderer.Bootstrap3 as B3
renderAlertsBootstrap3 :: [Alert] -> Markup
renderAlertsBootstrap3 = preEscapedToMarkup . B3.renderAlertsBootstrap3