Skip to content

Commit 55b3399

Browse files
Change code example from Implements to Extends
1 parent 9502417 commit 55b3399

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

15/umbraco-cms/reference/umbraco-flavored-markdown.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ The corresponding JavaScript/TypeScript API would contain a method to render the
124124
```js
125125
import { UmbUfmComponentBase } from '@umbraco-cms/backoffice/ufm';
126126

127-
export class MyCustomUfmComponentApi implements UmbUfmComponentBase {
127+
export class MyCustomUfmComponentApi extends UmbUfmComponentBase {
128128
render(token: Tokens.Generic) {
129129
// You could do further regular expression/text processing here!
130130
return `<ufm-custom-component text="${token.text}"></ufm-custom-component>`;

0 commit comments

Comments
 (0)