scouting: setting up html and css for adding shift schedule tab

Decided to use scouting schedule using ending in number method, so could
scale infinitely into larger numbers rather than set amount of matches.
Ignore component.ts portion of commit, used for later when sending data
to flatbuffer.

Signed-off-by: Milo Lin <100027790@mvla.net>
Change-Id: I3b132e135a9e3a5d5ae34e0c31468709ebde0053
diff --git a/scouting/www/shift_schedule/shift_schedule.module.ts b/scouting/www/shift_schedule/shift_schedule.module.ts
new file mode 100644
index 0000000..0e5aa48
--- /dev/null
+++ b/scouting/www/shift_schedule/shift_schedule.module.ts
@@ -0,0 +1,12 @@
+import {CommonModule} from '@angular/common';
+import {NgModule} from '@angular/core';
+import {FormsModule} from '@angular/forms';
+
+import {ShiftsComponent} from './shift_schedule.component';
+
+@NgModule({
+  declarations: [ShiftsComponent],
+  exports: [ShiftsComponent],
+  imports: [CommonModule, FormsModule],
+})
+export class ShiftScheduleModule {}