Getting Started with uisuite

Welcome to uisuite! This guide will help you get up and running with our beautiful Angular component library.

Installation

Install the uisuite package using npm:

bash
npm install @uisuite/angular

Quick Start

After installation, import the uisuite module in your Angular application:

typescript
import { UisuiteModule } from '@uisuite/angular';

@NgModule({
  imports: [
    BrowserModule,
    UisuiteModule
  ]
})
export class AppModule { }

Using Components

Once imported, you can start using uisuite components in your templates:

html
<uButton variant="primary" color="primary">
  Click me
</uButton>

Next Steps

Explore our component library to see all available components and their configurations: