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.
28 lines
981 B
28 lines
981 B
import { CommonModule } from '@angular/common';
|
|
import { NgModule } from '@angular/core';
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { MatDatepickerModule } from '@angular/material/datepicker';
|
|
import { MatFormFieldModule } from '@angular/material/form-field';
|
|
import { MatInputModule } from '@angular/material/input';
|
|
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader';
|
|
|
|
import { FireCalculatorComponent } from './fire-calculator.component';
|
|
import { FireCalculatorService } from './fire-calculator.service';
|
|
|
|
@NgModule({
|
|
declarations: [FireCalculatorComponent],
|
|
exports: [FireCalculatorComponent],
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
MatButtonModule,
|
|
MatDatepickerModule,
|
|
MatFormFieldModule,
|
|
MatInputModule,
|
|
NgxSkeletonLoaderModule,
|
|
ReactiveFormsModule
|
|
],
|
|
providers: [FireCalculatorService]
|
|
})
|
|
export class GfFireCalculatorModule {}
|
|
|