Files
doneit-web/src/app/tiny-mce/tiny-mce.page.ts
T

19 lines
344 B
TypeScript
Raw Normal View History

2023-06-30 15:35:11 +01:00
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-tiny-mce',
templateUrl: './tiny-mce.page.html',
styleUrls: ['./tiny-mce.page.scss'],
})
export class TinyMCEPage implements OnInit {
2023-07-03 12:04:52 +01:00
initialContent = '<h1>Hello, World!</h1><p>This is my HTML document.</p>';
2023-06-30 15:35:11 +01:00
constructor() { }
ngOnInit() {
}
}