Skip to content

Commit

Permalink
Add MP homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
XanderVertegaal committed Oct 9, 2024
1 parent 92046f4 commit 3057461
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>minimalist-parser works!</p>
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { MinimalistParserComponent } from './minimalist-parser.component';

describe('MinimalistParserComponent', () => {
let component: MinimalistParserComponent;
let fixture: ComponentFixture<MinimalistParserComponent>;

beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [MinimalistParserComponent]
})
.compileComponents();

fixture = TestBed.createComponent(MinimalistParserComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

it('should create', () => {
expect(component).toBeTruthy();
});
});
12 changes: 12 additions & 0 deletions frontend/src/app/minimalist-parser/minimalist-parser.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { Component } from '@angular/core';

@Component({
selector: 'pp-minimalist-parser',
standalone: true,
imports: [],
templateUrl: './minimalist-parser.component.html',
styleUrl: './minimalist-parser.component.scss'
})
export class MinimalistParserComponent {

}
5 changes: 5 additions & 0 deletions frontend/src/app/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { SpindleAboutComponent } from './spindle/spindle-about/spindle-about.com
import { SpindleNotationComponent } from './spindle/spindle-notation/spindle-notation.component';
import { ReferencesComponent } from './references/references.component';
import { SampleComponent } from './sample/sample.component';
import { MinimalistParserComponent } from './minimalist-parser/minimalist-parser.component';

const routes: Routes = [
{
Expand Down Expand Up @@ -43,6 +44,10 @@ const routes: Routes = [
}
]
},
{
path: 'minimalist-parser',
component: MinimalistParserComponent
},
{
path: 'about',
component: HomeComponent,
Expand Down

0 comments on commit 3057461

Please sign in to comment.