frontend/src/app/components/nodes/norm/norm.component.html

7 lines
225 B
HTML
Raw Normal View History

<div [ngClass]="isDark() ? 'container dark' : 'container'">
<wysiwyg-editor
[contents]="contents"
(contentsChanged)="onContentsChanged($event)"
[readonly]="isReadonly"
></wysiwyg-editor>
2020-10-13 16:57:56 +00:00
</div>