mirror of
https://github.com/danielvici/tool-website.git
synced 2026-01-17 02:21:26 +00:00
files formatted; add: qrcode generator
This commit is contained in:
@@ -4,6 +4,8 @@
|
||||
<button
|
||||
class="text-xl w-fit bg-blue-500 text-white py-2 px-4 rounded-md hover:bg-blue-600 transition-colors hover:cursor-pointer"
|
||||
routerLink="/"
|
||||
>Home</button>
|
||||
>
|
||||
Home
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -8,9 +8,8 @@ describe('TestIt', () => {
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [TestIt]
|
||||
})
|
||||
.compileComponents();
|
||||
imports: [TestIt],
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(TestIt);
|
||||
component = fixture.componentInstance;
|
||||
|
||||
@@ -1,14 +1,10 @@
|
||||
import { Component } from '@angular/core';
|
||||
import {RouterLink} from '@angular/router';
|
||||
import { RouterLink } from '@angular/router';
|
||||
|
||||
@Component({
|
||||
selector: 'app-test-it',
|
||||
imports: [
|
||||
RouterLink
|
||||
],
|
||||
imports: [RouterLink],
|
||||
templateUrl: './test-it.html',
|
||||
styleUrl: './test-it.css',
|
||||
})
|
||||
export class TestIt {
|
||||
|
||||
}
|
||||
export class TestIt {}
|
||||
|
||||
Reference in New Issue
Block a user