Added a bunch of stuff

This commit is contained in:
jfusia
2024-05-22 14:07:00 -04:00
parent 547783aa73
commit 17f5b675b9
70 changed files with 45689 additions and 365 deletions

View File

@@ -1,13 +1,15 @@
import { Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';
import { ChartComponent } from '../components/chart/chart.component';
import { SelectComponent } from '../components/select/select.component';
@Component({
selector: 'app-root',
standalone: true,
imports: [RouterOutlet],
imports: [RouterOutlet, ChartComponent, SelectComponent],
templateUrl: './app.component.html',
styleUrl: './app.component.scss'
styleUrl: './app.component.scss',
})
export class AppComponent {
title = 'gams';
title = 'Georgia Milestones';
}