Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 530 Bytes

README.md

File metadata and controls

38 lines (29 loc) · 530 Bytes

@actbase/react-ui

Install

npm install @actbase/react-ui
yarn add @actbase/react-ui

Usage

import React from 'react';
import UI from '@actbase/react-ui';

const App = () => (
  <UI.Form>
    <UI.Input placeholder="input" />
    <UI.Button type="primary" htmlType="submit">
      Submit
    </UI.Button>
  </UI.Form>
);

Development

$ git clone [email protected]:actbase/react-ui.git
$ cd react-ui
$ yarn
$ yarn start

Open your browser and visit http://127.0.0.1:6006