Added stub for @farmmaps/common

This commit is contained in:
Willem Dantuma
2019-07-12 13:07:31 +02:00
parent 503a2da597
commit 38a34b6388
22 changed files with 330 additions and 13 deletions

View File

@@ -8,6 +8,8 @@
<h2>Material Test</h2>
<farmmaps-material></farmmaps-material>
<h2>Material Test Cropfield Selector</h2>
<h2>Common Test</h2>
<lib-common></lib-common>
<farmmaps-cropfield-selector></farmmaps-cropfield-selector>
<ul>
<h2>Here are some links to help you start: </h2>

View File

@@ -3,6 +3,7 @@ import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { MaterialModule } from 'material';
import { CommonModule } from '@farmmaps/common';
@NgModule({
declarations: [
@@ -10,7 +11,8 @@ import { MaterialModule } from 'material';
],
imports: [
BrowserModule,
MaterialModule
MaterialModule,
CommonModule
],
providers: [],
bootstrap: [AppComponent]