[enhancement]: support serach on settings page

This commit is contained in:
Kendall Garner
2024-05-05 13:25:05 -07:00
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;
};