@skedulo/breeze-ui-react
v1.31.2
Published
Breeze UI React is a component library built for use within Skedulo web applications developed in React.
Maintainers
Keywords
Readme
Breeze UI React
Breeze UI React is a component library built for use within Skedulo web applications developed in React.
This package contains React wrappers for Breeze UI web components.
Installation
The React wrappers depend on the core library, so both must be installed.
Skedulo Platform
If you are developing on Skedulo Platform, the Breeze UI core library is already installed so you just need the wrappers.
npm install @skedulo/breeze-ui-reactStandalone application
In a standalone application, install both.
npm install @skedulo/breeze-ui @skedulo/breeze-ui-reactSomewhere close to the entry point of your application you'll need to import the core library so it is available to the React wrappers wherever they are used:
// In app.tsx or similar top-level component
import '@skedulo/breeze-ui'// some-view.tsx
import { Button } from '@skedulo/breeze-ui-react'