Skip to content

gisce/react-ooui

Folders and files

NameName
Last commit message
Last commit date
Jan 20, 2025
Jan 11, 2024
Aug 14, 2024
Mar 13, 2025
Oct 10, 2023
Nov 6, 2024
Nov 9, 2023
Dec 4, 2023
Nov 21, 2023
Oct 18, 2023
Oct 18, 2023
Sep 18, 2020
Dec 20, 2024
Dec 4, 2023
Mar 13, 2025
Mar 13, 2025
Dec 19, 2023
Dec 19, 2023
Feb 9, 2021
Dec 19, 2023

Repository files navigation

react-ooui

The component library for OpenObject & OpenERP objects based on ant-design and built with TypeScript.

πŸš€ Usage

Install via git:

npm i git+ssh://github.com/gisce/react-ooui.git#webpack_lib

Import library components:

import { Button, Char } from "react-ooui";

And then you can use it:

const getOouiComponents = () => {
  return (
    <>
      <Char id="test" placeholder="Enter a task" />
      <Button type="dashed">Button</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