jessy1092 / react-semantify

Integrate Semantic-ui with react components.
http://jessy1092.github.io/react-semantify
MIT License
343 stars 41 forks source link

ES6 module import error fix #14 #34

Closed jessy1092 closed 8 years ago

jessy1092 commented 8 years ago

Support ES6 export and import. Relative #14

Now could use like

import {Button} from 'react-semantify';

or

import * as Semantify from 'react-semantify';
let {Button} = Semantify;

or es5

var Button = require('react-semantify').Button;

Not support:

import Semantify from 'react-semantify';
let {Button} = Semantify;