0.13.6 • Published 7 years ago

preact-modular-ui v0.13.6

Weekly downloads
17
License
-
Repository
github
Last release
7 years ago

React Modular UI

Customizable Isomorphic React UI library.

Coverage Status Stories in Ready

Installation

npm install react-modular-ui --save

or

yarn add react-modular-ui

Example

import React from "react";
import {Button} from "react-modular-ui";

class Example extends React.Component {
  render() {
    return (
      <Block layout="horizontal" justify="center">
        <Button color="primary">Sign up</Button>
        <Button>Sign in</Button>
      </Block>
    );
  }
}

Preact support

You can use preact-modular-ui package in case you are using preact.

npm install preact-modular-ui --save

or

yarn add preact-modular-ui

Development

Set up

npm install

Run

Build:

gulp

Start server:

npm start

Client side rendering example: http://localhost:3000 Server side rendering example: http://localhost:3000/static

Test

npm run test-dev
0.13.6

7 years ago

0.13.1

7 years ago

0.13.0

7 years ago