Fix require in docs

This commit is contained in:
Juho Teperi 2020-02-06 16:56:10 +02:00
parent c70f4f9c4e
commit cda8866955
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ The primary entrypoint to the reagent library is `reagent.core/render`.
```clojure
(ns example
(:require [reagent.core :as r]))
(:require [reagent.dom :as rdom]))
(defn render-simple []
(rdom/render [:div [:p "Hello world!"]]