Add notes scouting page to scouting app.

Change-Id: Ie2c60ba4a69ae68f407cb2a0c0fb6e90b7bfe1c5
Signed-off-by: Alex Perry <alex.perry96@gmail.com>
diff --git a/scouting/www/app_module.ts b/scouting/www/app_module.ts
index e560bfc..e8518d1 100644
--- a/scouting/www/app_module.ts
+++ b/scouting/www/app_module.ts
@@ -1,11 +1,12 @@
 import {NgModule} from '@angular/core';
 import {BrowserModule} from '@angular/platform-browser';
 import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
+
+import {App} from './app';
 import {EntryModule} from './entry/entry.module';
 import {ImportMatchListModule} from './import_match_list/import_match_list.module';
 import {MatchListModule} from './match_list/match_list.module';
-
-import {App} from './app';
+import {NotesModule} from './notes/notes.module';
 
 @NgModule({
   declarations: [App],
@@ -13,6 +14,7 @@
     BrowserModule,
     BrowserAnimationsModule,
     EntryModule,
+    NotesModule,
     ImportMatchListModule,
     MatchListModule,
   ],