12 lines
273 B
TypeScript
12 lines
273 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { Switch2D3DComponent } from './components/olcs/switch2d3d/switch2d3d.component';
|
|
|
|
|
|
@NgModule({
|
|
declarations: [Switch2D3DComponent],
|
|
imports: [
|
|
],
|
|
exports: [Switch2D3DComponent]
|
|
})
|
|
export class CommonMap3dModule { }
|