Cloud-CV/EvalAI

View on GitHub
frontend_v2/src/app/components/get-involved/get-involved.module.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';

// import component
import { GetInvolvedComponent } from './get-involved.component';

// import module
import { GetInvolvedRoutingModule } from './get-involved-routing.module';
import { SharedModule } from '../../shared/shared.module';

@NgModule({
  declarations: [GetInvolvedComponent],
  imports: [CommonModule, GetInvolvedRoutingModule, SharedModule],
  exports: [GetInvolvedComponent],
})
export class GetInvolvedModule {}