@gechiui/components
Version:
UI components for GeChiUI.
21 lines (14 loc) • 809 B
Markdown
# Components
This directory includes a library of generic React components to be used for creating common UI elements shared between screens and features of the GeChiUI dashboard.
## Usage
Within Gutenberg, these components can be accessed by importing from the `components` root directory:
```jsx
/**
* GeChiUI dependencies
*/
import { Button } from '@gechiui/components';
const MyButton = () => {
return <Button>Click Me!</Button>;
};
```
Many components also include styles which will need to be output in order to appear correctly. Within GeChiUI, you can [add the `gc-components` stylesheet as a dependency of your plugin's stylesheet](https://developer.gechiui.com/reference/functions/gc_enqueue_style/#parameters). In other projects, you can link to the `build-style/style.css` file directly.