WhizUI Installation Guide
About WhizUI Reporting
WhizUI is a powerful and secure npm package designed to enhance your projects with robust features. This package requires a paid license key for usage, which can be obtained after purchase.
Introduction
WhizUI is a powerful and secure npm package designed to enhance your projects with robust features. This package requires a paid license key for usage, which can be obtained after purchase.
Requirements
Node.js version 12 or higher npm or yarn A valid WhizUI license key
Installation Steps
Obtain Your License Key
First, go to our product page to purchase a license for WhizUI. Once the purchase is complete, your unique license key will be sent to you via email.
Install the Package
To install the WhizUI package via npm or yarn, follow these steps:
npm install @whizui/react-tailwind --save
yarn add @whizui/react
Add Your License Key
After installation, create a .env file in the root directory of your project (if it doesn’t already exist). Add your license key as follows:
import setLicenseKey from "@whizui/license-manager";
const WHIZUI_LICENSE_KEY=your-license-key-here;useEffect(() => { setLicenseKey( WHIZUI_LICENSE_KEY ); }, []);
Start Using WhizUI
Once the package is installed and the license key is added, you can start using WhizUI:
import { Accordion, AccordionOptions } from "@whizui/react-tailwind";
<Accordion><div> WhizUİ Accordion works ! </div></Accordion>