import { usePlant } from '@sensoro/plant'; import { fetchList } from '../services/application'; const model = { fetch: fetchList, }; const useApplication = () => { const result = usePlant(model); return { ...result, }; }; export default useApplication;