Files
Verso/services/web/frontend/js/features/command-palette/components/command-palette.tsx
T
Mathias JakobsenandCopybot eddec90cb1 Merge pull request #33649 from overleaf/mj-command-palette
[web] Add command palette

GitOrigin-RevId: 5bf1903836810ca5f0e2bc7f6c00a4b1da797ea2
2026-05-21 08:07:04 +00:00

12 lines
249 B
TypeScript

import { lazy, Suspense } from 'react'
const CommandPaletteRoot = lazy(() => import('./command-palette-root'))
export default function CommandPalette() {
return (
<Suspense fallback={null}>
<CommandPaletteRoot />
</Suspense>
)
}