From 4d37359e2153f082835c9b49f7291f1afa74667a Mon Sep 17 00:00:00 2001 From: Michael Watkins <38503580+watkinsm@users.noreply.github.com> Date: Thu, 17 Oct 2019 10:50:21 +0300 Subject: [PATCH] Fix error in CreatingReagentComponents.md Without the [], the columns example caused compilation errors if actually used in a file. --- doc/CreatingReagentComponents.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/CreatingReagentComponents.md b/doc/CreatingReagentComponents.md index 19a5fd7..a611e7f 100644 --- a/doc/CreatingReagentComponents.md +++ b/doc/CreatingReagentComponents.md @@ -101,6 +101,7 @@ Referring to the example in [React's documentation](https://reactjs.org/docs/fra ```cljs (defn columns + [] [:<> [:td "Hello"] [:td "World"]]