Skip to main content

Installation

To add Overdog FN to your project, you can use either Yarn or NPM. Here are the steps for each package manager:

  1. Open your command-line interface.
  2. Navigate to your project directory.
  3. Run the following command to add Overdog FN as a dependency:
yarn add @overdog/fn
npm install @overdog/fn

Import Elements in your JS files

Once you've executed these commands, Overdog FN will be successfully installed and ready for integration into your project. Refer to the documentation for the specific elements you intend to utilize. Here's an example demonstrating the import of multiple elements:

// Importing multiple elements at once from Overdog FN
import { Element1, Element2, Element3 } from '@overdog/fn';

// Use the imported elements in your project
// ...