Add a very basic angular example.
Also include a basic devserver: bazel run //scouting/wwww:devserver
Most of the code is boilerplate for the bootstrap process. app.ts and
app.ng.html are representative of "regular" components though.
app.module.ts is mostly representative, but has some special handling
for being the bootstrapped module/component.
Change-Id: I58b5424688d2e67e7ec2ba379bd84f2bf2160b06
Signed-off-by: Alex Perry <alex.perry96@gmail.com>
diff --git a/scouting/www/main.ts b/scouting/www/main.ts
new file mode 100644
index 0000000..e1a4ab5
--- /dev/null
+++ b/scouting/www/main.ts
@@ -0,0 +1,4 @@
+import {platformBrowser} from '@angular/platform-browser';
+import {AppModule} from './app_module';
+
+platformBrowser().bootstrapModule(AppModule);