Skip to content

Files

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Latest commit

308691f · Dec 20, 2024

History

History
12 lines (11 loc) · 294 Bytes
·

example_component_ts.md

File metadata and controls

12 lines (11 loc) · 294 Bytes
·
import { Component } from '@angular/core';
import { IonCheckbox } from '@ionic/angular/standalone';

@Component({
  selector: 'app-example',
  templateUrl: 'example.component.html',
  styleUrls: ['example.component.css'],
  imports: [IonCheckbox],
})
export class ExampleComponent {}