mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 13:03:50 +00:00
10 lines
152 B
TypeScript
10 lines
152 B
TypeScript
import { useBoolean } from 'ahooks';
|
|
|
|
export const useRefresh = () => {
|
|
const [_, { toggle }] = useBoolean();
|
|
|
|
return {
|
|
refresh: toggle
|
|
};
|
|
};
|