1234567891011121314151617181920 |
- import { Component, OnInit } from '@angular/core';
- import { CommonModule } from '@angular/common';
- import { FormsModule } from '@angular/forms';
- import { IonContent, IonHeader, IonTitle, IonToolbar } from '@ionic/angular/standalone';
- @Component({
- selector: 'app-community',
- templateUrl: './community.page.html',
- styleUrls: ['./community.page.scss'],
- standalone: true,
- imports: [IonContent, IonHeader, IonTitle, IonToolbar, CommonModule, FormsModule]
- })
- export class CommunityPage implements OnInit {
- constructor() { }
- ngOnInit() {
- }
- }
|