1.0.3 • Published 1 year ago

ng-ws-ui v1.0.3

Weekly downloads
-
License
-
Repository
github
Last release
1 year ago

ng-ws-ui

Angular 17 TypeScript npm

A collection of reusable Angular 17 UI components.

Table of Contents

Installation

To install the entire ng-ws-ui package:

npm install ng-ws-ui 

Or, to install individual libraries:

npm install ng-ws-video-player

Usage

Import the desired component in your standalone component or app.component.ts:

import { Component } from '@angular/core';

import { NgWsVideoPlayerComponent } from 'ng-ws-video-player';

@Component({
  selector: 'app-root',
  standalone: true,
  imports: [NgWsVideoPlayerComponent],
  template: `<ng-ws-video-player/>`
})
export class AppComponent {}