Skip to content

Commit

Permalink
Added loading tracks from CSV file.
Browse files Browse the repository at this point in the history
  • Loading branch information
WinSalt committed Jun 3, 2024
1 parent a062936 commit 0596460
Show file tree
Hide file tree
Showing 8 changed files with 442 additions and 265 deletions.
73 changes: 55 additions & 18 deletions ISD-conference-web-app-frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion ISD-conference-web-app-frontend/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { PagesModule } from './pages/pages.module';
import { UiComponentsModule } from './components/isd-ui/components.module';
import { RouterLink, RouterOutlet } from '@angular/router';
import { PagesHelperCompnentsModule } from './components/pagesHelperComponents/pagesHelperComponents.module';

@NgModule({
Expand Down
7 changes: 7 additions & 0 deletions ISD-conference-web-app-frontend/src/app/interfaces/Tiles.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export interface Tile {
id: string;
title: string;
paragraphs: string[];
topics: string[];
chairs: string[];
}
Loading

0 comments on commit 0596460

Please sign in to comment.