mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-13 18:13:29 +01:00
feat: searchbar
This commit is contained in:
15
packages/website/src/contexts/cmdK.tsx
Normal file
15
packages/website/src/contexts/cmdK.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import { type DisclosureState, useDialogState } from 'ariakit';
|
||||
import type { PropsWithChildren } from 'react';
|
||||
import { createContext, useContext } from 'react';
|
||||
|
||||
export const CmdKContext = createContext<DisclosureState | null>(null);
|
||||
|
||||
export const CmdKProvider = ({ children }: PropsWithChildren) => {
|
||||
const dialog = useDialogState();
|
||||
|
||||
return <CmdKContext.Provider value={dialog}>{children}</CmdKContext.Provider>;
|
||||
};
|
||||
|
||||
export function useCmdK() {
|
||||
return useContext(CmdKContext);
|
||||
}
|
||||
Reference in New Issue
Block a user