From 906cd0bca6ed69b66726f050d9839ec86d0ce7d3 Mon Sep 17 00:00:00 2001 From: danprince Date: Sat, 9 Jul 2016 14:20:02 +0100 Subject: [PATCH] fixes require typo in readme example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0ed8bf0..dd87cb3 100644 --- a/README.md +++ b/README.md @@ -91,8 +91,8 @@ You mount the component into the DOM like this: ```clj (defn mountit [] - (reagent/render-component [childcaller] - (.-body js/document))) + (r/render-component [childcaller] + (.-body js/document))) ``` assuming we have imported Reagent like this: