Installation

Setting up Flexy on your project is pretty straight foward. For starters, all you need to do is install the npm package.

yarn add @flexy.tech/widget

Import

After installation, you'll need to import the Flexy component + stylesheet and then render it in your react application.

import '@flexy.tech/widget/style.css'
import { Flexy } from "@flexy.tech/widget";

export const YourApp = () => {
  return <Flexy />;
};

Last updated