feat: add main component as app entry page
This commit is contained in:
11
src/app/pages/main/main.ts
Normal file
11
src/app/pages/main/main.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
import { Card } from '../../components/card/card';
|
||||
import { ContactForm } from '../../components/contact-form/contact-form';
|
||||
|
||||
@Component({
|
||||
selector: 'app-main',
|
||||
imports: [Card, ContactForm],
|
||||
templateUrl: './main.html',
|
||||
styleUrl: './main.scss',
|
||||
})
|
||||
export class Main {}
|
||||
Reference in New Issue
Block a user