1.0.1 • Published 9 years ago

es6-template-strings-jsx v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

ES6 JSX-Tagged Template Strings to JS transform

This is a syntax transform which transforms ES6 JSX-Tagged Template Strings to JS. For example:

var element = jsx`
  <p>
    Hello, ${name}!
  </p>
`;

is being transformed into:

var element = React.createElement('p',
  'Hello, ', name
);

Installation

% npm install es6-template-strings-jsx

Using with Webpack

Webpack loader is included as es6-template-strings-jsx/loader.