0.0.1 • Published 3 years ago

github-user-widget-uahm v0.0.1

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

GithubUserWidget

Show information about user github. Using Api github

Instructions

Follow next instructions for correct use of library

Instalation

npm install github-user-widget

Configuration

On app.module.ts we import module of library "GithubUserWidgetModule"

import { NgModule } from '@angular/core';
import { UserComponent } from './components/user/user.component';
import { FindUserComponent } from './components/find-user/find-user.component';

const COMPONENT = [UserComponent, FindUserComponent];

@NgModule({
  declarations: [
    COMPONENT,
  ],
  imports: [
  ],
  exports: [
    COMPONENT
  ]
})
export class GithubUserWidgetModule { }

```