Update react documentation links in intro.cljs

Most importantly, the keys link stopped resolving to anything useful.
This commit is contained in:
Ian Kerins 2019-06-30 17:55:03 -04:00 committed by GitHub
parent d9a9633aed
commit 6059934dce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -112,9 +112,9 @@
(defn intro []
(let [github {:href "https://github.com/reagent-project/reagent"}
clojurescript {:href "https://github.com/clojure/clojurescript"}
react {:href "http://facebook.github.io/react/"}
react {:href "https://reactjs.org/"}
hiccup {:href "https://github.com/weavejester/hiccup"}
dynamic-children {:href "http://facebook.github.io/react/docs/multiple-components.html#dynamic-children"}]
react-keys {:href "https://reactjs.org/docs/lists-and-keys.html#keys"}]
[:div.demo-text
[:h2 "Introduction to Reagent"]
@ -168,7 +168,7 @@
and helps React to improve performance for large lists. The key
can be given either (as in this example) as meta-data, or as a "
[:code ":key"] " item in the first argument to a component (if it
is a map). See Reacts " [:a dynamic-children "documentation"] "
is a map). See Reacts " [:a react-keys "documentation"] "
for more info."]]))
(defn managing-state []