3.0.0 • Published 6 years ago

metal-react v3.0.0

Weekly downloads
5
License
BSD
Repository
github
Last release
6 years ago

metal-react

A function that transforms React components into Metal.js components

Usage

Just call the bridge function with the constructor of the react component you wish to use, and it will return a metal component you can use instead. For example:

import bridge from 'metal-react';
import SomeReactComponent from 'some-react-module';

var MetalComponent = bridge(SomeReactComponent);

Now you can use MetalComponent inside your metal-jsx code in the same way that you'd use SomeReactComponent. For example:

render() {
  return <MetalComponent foo="foo" />
}

Setup

  1. Install NodeJS >= v0.12.0 and NPM >= v3.0.0, if you don't have it yet. You can find it here.

  2. Install local dependencies:

    npm install
  3. Build the code:

    npm run build
3.0.0

6 years ago

2.0.0

8 years ago

1.0.0

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago