Refactor 3d to own library

This commit is contained in:
Willem Dantuma
2020-10-02 17:20:00 +02:00
parent b00b21e6b8
commit e87affee08
22 changed files with 265 additions and 13 deletions

View File

@@ -0,0 +1,11 @@
import { NgModule } from '@angular/core';
import { Switch2D3DComponent } from './components/olcs/switch2d3d/switch2d3d.component';
@NgModule({
declarations: [Switch2D3DComponent],
imports: [
],
exports: [Switch2D3DComponent]
})
export class CommonMap3dModule { }