diff --git a/src/app/home/home.component.html b/src/app/home/home.component.html
index 950ba4a..cff0691 100644
--- a/src/app/home/home.component.html
+++ b/src/app/home/home.component.html
@@ -1,2 +1,40 @@
-
+
+
+
+
+
Collaborative map making... {{typedText | async}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/app/home/home.component.ts b/src/app/home/home.component.ts
index 98b9def..165200d 100644
--- a/src/app/home/home.component.ts
+++ b/src/app/home/home.component.ts
@@ -1,9 +1,27 @@
import {Component} from "@angular/core";
+import {Observable, timer} from "rxjs";
+import {map, take} from "rxjs/operators";
+import {Router} from "@angular/router";
+
+const chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
@Component({
selector: 'home',
- templateUrl: 'home.component.html',
+ templateUrl: 'home.component.html'
})
export class HomeComponent {
+ phrase = 'If you\'re into that';
+ typedText: Observable