From 398d079d8904825005081d0aa5def347285545ef Mon Sep 17 00:00:00 2001 From: lukeschunk Date: Fri, 27 Nov 2015 10:57:51 -0700 Subject: [PATCH] added a simple react.js example --- r/react.js | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 r/react.js diff --git a/r/react.js b/r/react.js new file mode 100644 index 00000000..f4835980 --- /dev/null +++ b/r/react.js @@ -0,0 +1,3 @@ +//simple react component that renders "Hello World" as an H1 tag into the body + +React.render(

Hello World

, document.body); \ No newline at end of file