mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
feat: create challenge 48 without solution
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
||||
import { FormComponent } from '../ui/form.component';
|
||||
|
||||
@Component({
|
||||
standalone: true,
|
||||
imports: [FormComponent],
|
||||
template: `
|
||||
<section class="mx-auto max-w-screen-sm">
|
||||
<div class="rounded-lg bg-white p-8 shadow-lg lg:p-12">
|
||||
<app-form />
|
||||
</div>
|
||||
</section>
|
||||
`,
|
||||
changeDetection: ChangeDetectionStrategy.OnPush,
|
||||
})
|
||||
export class JoinComponent {}
|
||||
Reference in New Issue
Block a user