- 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:
Arno Kaimbacher 2021-09-07 08:36:17 +02:00
parent 220944b115
commit df3561235d
37 changed files with 12724 additions and 645 deletions

View 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 { }