Skip to content

Commit

Permalink
style(frontend): Revert poll.module.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Clashsoft committed Mar 3, 2024
1 parent bfdb17d commit e85a83b
Showing 1 changed file with 24 additions and 23 deletions.
47 changes: 24 additions & 23 deletions apps/frontend/src/app/poll/poll.module.ts
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { ModalModule, ToastModule } from '@mean-stream/ngbx';
import { NgbModule } from '@ng-bootstrap/ng-bootstrap';
import { CalendarModule, DateAdapter } from 'angular-calendar';
import { adapterFactory } from 'angular-calendar/date-adapters/date-fns';
import { FlatpickrModule } from 'angularx-flatpickr';
import {CommonModule} from '@angular/common';
import {NgModule} from '@angular/core';
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
import {ModalModule, ToastModule} from '@mean-stream/ngbx';
import {NgbModule} from '@ng-bootstrap/ng-bootstrap';
import {CalendarModule, DateAdapter} from 'angular-calendar';
import {adapterFactory} from 'angular-calendar/date-adapters/date-fns';
import {FlatpickrModule} from 'angularx-flatpickr';

import { CheckButtonComponent } from './check-button/check-button.component';
import { ChooseDateComponent } from './choose-date/choose-date.component';
import { ChooseEventsComponent } from './choose-events/choose-events.component';
import { CreateEditPollComponent } from './create-poll/create-edit-poll.component';
import { EventHeadComponent } from './event-head/event-head.component';
import { EventListComponent } from './event-list/event-list.component';
import { MailAlertComponent } from './mail-alert/mail-alert.component';
import { ParticipantInfoComponent } from './participant-info/participant-info.component';
import { PollRoutingModule } from './poll-routing.module';
import { ChooseDateService } from './services/choose-date.service';
import { TableComponent } from './table/table.component';
import { CoreModule } from '../core/core.module';
import { AutofillModalComponent, PostponeModalComponent } from '../modals';
import { SomePipe } from '../pipes';
import {CheckButtonComponent} from './check-button/check-button.component';
import {ChooseDateComponent} from './choose-date/choose-date.component';
import {ChooseEventsComponent} from './choose-events/choose-events.component';
import {CreateEditPollComponent} from './create-poll/create-edit-poll.component';
import {EventHeadComponent} from './event-head/event-head.component';
import {EventListComponent} from './event-list/event-list.component';
import {MailAlertComponent} from './mail-alert/mail-alert.component';
import {ParticipantInfoComponent} from './participant-info/participant-info.component';
import {PollRoutingModule} from './poll-routing.module';
import {ChooseDateService} from './services/choose-date.service';
import {TableComponent} from './table/table.component';
import {CoreModule} from '../core/core.module';
import {AutofillModalComponent, PostponeModalComponent} from '../modals';
import {SomePipe} from '../pipes';

@NgModule({
declarations: [
Expand Down Expand Up @@ -54,4 +54,5 @@ import { SomePipe } from '../pipes';
],
providers: [ChooseDateService],
})
export class PollModule {}
export class PollModule {
}

0 comments on commit e85a83b

Please sign in to comment.