mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 10:23:33 +00:00
[enhancement]: support serach on settings page
This commit is contained in:
parent
683bb0222c
commit
645697367d
21 changed files with 439 additions and 385 deletions
|
|
@ -0,0 +1,8 @@
|
|||
import { createContext, useContext } from 'react';
|
||||
|
||||
export const SettingSearchContext = createContext<string>('');
|
||||
|
||||
export const useSettingSearchContext = () => {
|
||||
const ctxValue = useContext(SettingSearchContext);
|
||||
return ctxValue;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue