Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gisce/react-ooui
Transform ooui objects into react components
https://github.com/gisce/react-ooui
ant-design antd hacktoberfest javascript ooui react storybook
Last synced: about 2 months ago
JSON representation
Transform ooui objects into react components
- Host: GitHub
- URL: https://github.com/gisce/react-ooui
- Owner: gisce
- License: mit
- Created: 2020-09-18T12:43:29.000Z (over 4 years ago)
- Default Branch: v2
- Last Pushed: 2024-10-29T14:04:47.000Z (2 months ago)
- Last Synced: 2024-10-29T17:12:42.797Z (2 months ago)
- Topics: ant-design, antd, hacktoberfest, javascript, ooui, react, storybook
- Language: CSS
- Homepage:
- Size: 180 MB
- Stars: 4
- Watchers: 13
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-ooui
The component library for OpenObject & OpenERP objects based on [ant-design](https://github.com/ant-design/ant-design) and built with TypeScript.
## 🚀 Usage
Install via git:
```bash
npm i git+ssh://github.com/gisce/react-ooui.git#webpack_lib
```Import library components:
```javascript
import { Button, Char } from "react-ooui";
```And then you can use it:
```javascript
const getOouiComponents = () => {
return (
<>
Button
>
);
};
```You have an example app inside this repo. In order to run it you should follow these steps:
- `cd example`
- `npm install`
- `npm start`## 👷🏽♂️ Building
You must run:
- `npm install`
- `npm run build`And then you will have the bundled library inside `dist/`
## 🎨 Storybook
You can browse our Storybook running:
- `npm install`
- `npm run storybook`