Skip to content

Instantly share code, notes, and snippets.

@ferrerq
Created November 14, 2019 20:54
Show Gist options
  • Save ferrerq/c0bcc18f70c82379799fa5fe196dfe93 to your computer and use it in GitHub Desktop.
Save ferrerq/c0bcc18f70c82379799fa5fe196dfe93 to your computer and use it in GitHub Desktop.
import { UserRigthDirective } from './display-with-rigths.directive';
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import {MatButtonToggleModule} from '@angular/material/button-toggle';
@NgModule({
declarations: [
AppComponent,
UserRigthDirective
],
imports: [
BrowserModule,
BrowserAnimationsModule,
MatButtonToggleModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment