feat(CommandPalette): new component (#80)

This commit is contained in:
Benjamin Canac
2024-04-30 18:14:18 +02:00
committed by GitHub
parent 559a8cba58
commit d0017bf847
30 changed files with 1832 additions and 125 deletions

View File

@@ -47,6 +47,9 @@ export function extractShortcuts(items: any[] | any[][]) {
if (item.children) {
traverse(item.children.flat())
}
if (item.items) {
traverse(item.items.flat())
}
})
}