Skip to content
Snippets Groups Projects

feat: action-picker

Merged Daniel Schmidt requested to merge instantnoodl/action-picker into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -54,7 +54,7 @@ The host manages the popup of the action picker. This can be placed on your `mai
```ts
new Action({
name: 'Action with Children',
name: 'Most Basic Action',
description: 'Test Description',
action: () => {
console.log('Hello!');
@@ -100,7 +100,7 @@ If the children should be lazy loaded because they need some kind of database op
```ts
new Action({
name: 'Action with Children',
name: 'Action with Lazy Children',
description: 'Test Description',
children: async () => {
const users = Users.getAll();
Loading