ng-ws-ui
v1.1.0
Published
A collection of reusable Angular 17 UI components.
Downloads
20
Maintainers
Readme
ng-ws-ui
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 {}