Getting Started

Everything you need to start building with our component library — fast, accessible, and framework-ready.

📦 Installation

Install the core package via npm or yarn:

npm install @electrondome/***
yarn add @electrondome/***

For framework-specific packages:

  • @electrondome/react-*** for React

⚙️ Usage

Import components and start using them right away:

import DatePicker from "@electrondome/datepicker";

function Example() {
  return <DatePicker variant="primary" />;
}