From ef1099109700d830a16db9c4525845c8bda1779c Mon Sep 17 00:00:00 2001 From: Tessa Kelly Date: Wed, 17 Apr 2019 14:05:53 -0700 Subject: [PATCH] Section the Alert examples --- styleguide-app/Examples/Alert.elm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/styleguide-app/Examples/Alert.elm b/styleguide-app/Examples/Alert.elm index 1cb3619a..5685545e 100644 --- a/styleguide-app/Examples/Alert.elm +++ b/styleguide-app/Examples/Alert.elm @@ -16,12 +16,17 @@ example = { filename = "Nri.Ui.Alert.V4.elm" , category = Messaging , content = - [ Alert.error "This is an **error**" + [ Html.h4 [] [ Html.text "Markdown-supporting:" ] + , Alert.error "This is an **error**" , Alert.warning "This is a **warning**" , Alert.tip "This is a **tip**" , Alert.success "This is a **success**" + , Html.hr [] [] + , Html.h4 [] [ Html.text "Html-supporting:" ] , Alert.complexError (complexHtml "complexError") , Alert.complexWarning (complexHtml "complexWarning") + , Html.hr [] [] + , Html.h4 [] [ Html.text "Stacktraces-supporting:" ] , Alert.somethingWentWrong exampleRailsError ] }