0.0.2 • Published 3 years ago

chat-lib-bz v0.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

SuiteDash Chat Libary

React / TS / Tailwind CSS / Storybook

Install

npm install chat-lib-bz

Example

import { ToggleSwitch } from 'chat-lib-bz';
import 'chat-lib-bz/dist/tailwind.css';

const App = () => {
  const [isToggled, setIsToggled] = React.useState(false);
  return (
    <div>
      <ToggleSwitch
        enabled={isToggled}
        onChange={(v: boolean) => setIsToggled(v)}
      />
    </div>
  );
};
0.0.2

3 years ago

0.0.1

3 years ago