A set of beautiful React components for developing your own applications with chayns.
Installation
First you need to install the core part of the chayns-components.
npm install @chayns-components/core
yarn add @chayns-components/core
Information: Since the components have now been implemented with the styled-components
library, the styles are delivered directly with the components. There is no need to load an extra
stylesheet anymore.
Usage
You can use the components in your project as in the following example.
import { Button } from '@chayns-components/core';
const handleButtonClick: MouseEventHandler<HTMLButtonElement> = (event) => {
};
<Button onClick={handleButtonClick}>Click me!</Button>;