feat(doc): move permissions

This commit is contained in:
thomas
2023-10-18 10:02:38 +02:00
parent 5ea1d0c1c7
commit 7c52b6099f
26 changed files with 23 additions and 23 deletions

View File

@@ -0,0 +1,13 @@
/* eslint-disable @angular-eslint/component-selector */
import { ChangeDetectionStrategy, Component } from '@angular/core';
@Component({
standalone: true,
selector: 'button[app-button]',
template: `<ng-content></ng-content>`,
host: {
class: 'border border-blue-700 bg-blue-400 p-2 rounded-sm text-white',
},
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class ButtonComponent {}