zen-ui-react

0.1.1 • Public • Published

Zen UI ▸ React implementation

This package contains UI components build with React.

Documentation

Basic information about components is in the package zen-ui.

Running tests

To start unit tests, use:

npm test

Setup

Firstly include core package:

require("zen-ui-core");

Then import components:

import { VerticalLayout, VerticalLayoutRow } from "zen-ui-react";

Then use components in you template:

<VerticalLayout>
    <VerticalLayoutRow/>
    <VerticalLayoutRow height="100%"/>
</VerticalLayout>

Alternatively you can import only Zen which is a container for all components.

import { Zen } from "zen-ui-react";

and use dot syntax:

<Zen.VerticalLayout>
    <Zen.VerticalLayoutRow/>
    <Zen.VerticalLayoutRow height="100%"/>
</Zen.VerticalLayout>

Examples

There are examples at react-examples.zen-ui.org with sources in the package zen-ui-react-examples

/zen-ui-react/

    Package Sidebar

    Install

    npm i zen-ui-react

    Weekly Downloads

    9

    Version

    0.1.1

    License

    Apache-2.0

    Last publish

    Collaborators

    • ilyabogdanov