mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
945 B
25 lines
945 B
import { CommonModule } from '@angular/common';
|
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
|
import { MatLegacyButtonModule as MatButtonModule } from '@angular/material/legacy-button';
|
|
import { MatLegacyCardModule as MatCardModule } from '@angular/material/legacy-card';
|
|
import { RouterModule } from '@angular/router';
|
|
import { GfLogoModule } from '@ghostfolio/ui/logo';
|
|
|
|
import { RegisterPageRoutingModule } from './register-page-routing.module';
|
|
import { RegisterPageComponent } from './register-page.component';
|
|
import { ShowAccessTokenDialogModule } from './show-access-token-dialog/show-access-token-dialog.module';
|
|
|
|
@NgModule({
|
|
declarations: [RegisterPageComponent],
|
|
imports: [
|
|
CommonModule,
|
|
GfLogoModule,
|
|
MatButtonModule,
|
|
MatCardModule,
|
|
RegisterPageRoutingModule,
|
|
RouterModule,
|
|
ShowAccessTokenDialogModule
|
|
],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class RegisterPageModule {}
|
|
|