- add bulma style
- add components: messages, locate-button - move index.html into src folder - move to angular build tools - styles.css -> styles.scss
This commit is contained in:
parent
220944b115
commit
df3561235d
37 changed files with 12724 additions and 645 deletions
21
src/common/components/components.module.ts
Normal file
21
src/common/components/components.module.ts
Normal file
|
@ -0,0 +1,21 @@
|
|||
import { CommonModule } from '@angular/common';
|
||||
import { NgModule } from '@angular/core';
|
||||
import { LocateButtonComponent } from './locate-button/locate-button.component';
|
||||
|
||||
|
||||
// import { HelgolandMapModule, LocateService } from '@helgoland/map';
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
],
|
||||
declarations: [
|
||||
LocateButtonComponent,
|
||||
],
|
||||
exports: [
|
||||
LocateButtonComponent,
|
||||
|
||||
],
|
||||
providers: [
|
||||
]
|
||||
})
|
||||
export class ComponentsModule { }
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue