@sethealth/angular

npm i @sethealth/angular --save

Usage no npm install needed!

<script type="module">
  import sethealthAngular from 'https://cdn.skypack.dev/@sethealth/angular';
</script>

README

@sethealth/angular

Install

npm i @sethealth/angular --save

Usage

app.module.ts:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { SethealthModule } from '@sethealth/angular';
import { AppComponent } from './app.component';

@NgModule({
  declarations: [AppComponent],
  imports: [
    BrowserModule,
    SethealthModule.forRoot({ key: 'AI KEY' })
  ],
  providers: [],
  bootstrap: [AppComponent],
})
export class AppModule {}

app.component.html:

<set-progress-bar></set-progress-bar>

Check out our docs for further information