Jelly

Component reference

Jelly Button

The Jelly Button component is a customizable button that can be used in any part of your application.

Installation

To use the Jelly Button component in your application, install the jelly-ui package from npm:

npm install jelly-ui

Demo

Usage

To use the Jelly Button component in your application, import it from the jelly-ui package and use it like any other React component:


import { JellyButton } from 'jelly-ui';

export default function MyComponent() {
  return (
    <div>
      <JellyButton onClick={() => alert('Hello, world!')}>
        Click me
      </JellyButton>
    </div>
  );
}
Previous
Introduction to GP
Next
Card