Skip to content

Commit

Permalink
DON-752: Create blank login component
Browse files Browse the repository at this point in the history
Purely the result of running `ng generate component --standalone login`
  • Loading branch information
bdsl committed Nov 27, 2023
1 parent 7409988 commit 64b3d13
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
Empty file.
7 changes: 7 additions & 0 deletions src/app/login/login.component.cy.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { LoginComponent } from './login.component'

describe('LoginComponent', () => {
it('should mount', () => {
cy.mount(LoginComponent)
})
})
1 change: 1 addition & 0 deletions src/app/login/login.component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<p>login works!</p>
13 changes: 13 additions & 0 deletions src/app/login/login.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';

@Component({
selector: 'app-login',
standalone: true,
imports: [CommonModule],
templateUrl: './login.component.html',
styleUrls: ['./login.component.css']
})
export class LoginComponent {

}

0 comments on commit 64b3d13

Please sign in to comment.