mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-17 01:56:27 +08:00
refactor(core): new quick search service (#7214)
This commit is contained in:
@@ -9,6 +9,12 @@ export const FrameworkStackContext = React.createContext<FrameworkProvider[]>([
|
||||
Framework.EMPTY.provider(),
|
||||
]);
|
||||
|
||||
export function useFramework(): FrameworkProvider {
|
||||
const stack = useContext(FrameworkStackContext);
|
||||
|
||||
return stack[stack.length - 1]; // never null, because the default value
|
||||
}
|
||||
|
||||
export function useService<T extends Service>(
|
||||
identifier: GeneralIdentifier<T>
|
||||
): T {
|
||||
|
||||
Reference in New Issue
Block a user