react-modular-ui
v3.14.2
Published
Customizable Isomorphic React UI library.
Downloads
172
Readme
React Modular UI
Customizable Isomorphic React UI library.
Installation
npm install react-modular-ui --saveor
yarn add react-modular-uiExample
import React from "react";
import {Button} from "react-modular-ui";
class Example extends React.Component {
render() {
return (
<div>
<Button color="primary">Sign up</Button>
<Button>Sign in</Button>
</div>
);
}
}Development
Set up
yarnRun
Build:
yarn buildTest
npm run test-dev