From c537213cb124ee635cb5677516da63a55721fe18 Mon Sep 17 00:00:00 2001 From: Dmitri Zaitsev Date: Wed, 26 Apr 2017 13:54:31 +0100 Subject: [PATCH] Add reference to the Hyperscript libraries (#9517) * Add reference to the Hyperscript libraries I feel these should be mentioned as they provide terser syntax than using `R.createElement` directly, even with a shorthand. * Rephrase --- docs/react-without-jsx.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/react-without-jsx.md b/docs/react-without-jsx.md index c0e2bb72..e1439009 100644 --- a/docs/react-without-jsx.md +++ b/docs/react-without-jsx.md @@ -54,3 +54,6 @@ ReactDOM.render( ``` If you use this shorthand form for `React.createElement`, it can be almost as convenient to use React without JSX. + +Alternatively, you can refer to community projects such as [`react-hyperscript`](https://github.com/mlmorg/react-hyperscript) and [`hyperscript-helpers`](https://github.com/ohanhi/hyperscript-helpers) which offer a terser syntax. +