ild-games/Skein

View on GitHub
src/app/project-selection/project-selection.module.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

import { ProjectSelectionComponent } from './project-selection.component';
import { ControlsModule } from '../controls/controls.module';


@NgModule({
    declarations: [
        ProjectSelectionComponent
    ],
    imports: [
        ControlsModule
    ],
    exports: [
        ProjectSelectionComponent
    ]
})
export class ProjectSelectionModule {
}