From cef2b39c74c3880887a0d31bc415db48e1899ef2 Mon Sep 17 00:00:00 2001 From: RealWorldEdits376W <109642348+RealWorldEdits376W@users.noreply.github.com> Date: Wed, 20 Jul 2022 13:30:46 -0700 Subject: [PATCH] Typo error fixed. (#116) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6ab82e0..3978304 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ _JSX-Control-Statements_ is a Babel plugin that extends JSX to add basic control statements: **conditionals** and **loops**. It does so by transforming component-like control statements to their JavaScript counterparts - e.g. `Hello World!` becomes `condition() ? 'Hello World!' : null`. -Developers coming to React from using JavaScript templating libraries like Handlebars are often surprised that there's no built-in looping or conditional syntax. This is by design - JSX by is not a templating library, it's declarative syntactic sugar over functional JavaScript expressions. JSX Control Statements follows the same principle - it provides a component-like syntax that keeps your `render` functions neat and readable, but desugars into clean, readable JavaScript. +Developers coming to React from using JavaScript templating libraries like Handlebars are often surprised that there's no built-in looping or conditional syntax. This is by design - JSX is not a templating library, it's declarative syntactic sugar over functional JavaScript expressions. JSX Control Statements follows the same principle - it provides a component-like syntax that keeps your `render` functions neat and readable, but desugars into clean, readable JavaScript. The only dependency _JSX-Control-Statements_ relies upon is _Babel_. It is compatible with React and React Native.