Created
September 20, 2015 20:52
-
-
Save benzen/2dc7943117198ce7f1af to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns our-child.devcards | |
(:require | |
[reagent.core :as rg] | |
[devcards.core :as dc]) | |
(:require-macros | |
[devcards.core :as dc :refer [defcard defcard-doc deftest dom-node]])) | |
(dc/defcard string-card (str "## **string** type will render as markdown.")) | |
(defcard my-first-card | |
(rg/as-element [:h1 "Devcards is freaking awesome!"])) | |
(devcards.core/start-devcard-ui!) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment