8 lines
204 B
TypeScript
8 lines
204 B
TypeScript
import { useState } from "react";
|
|
|
|
// 页面加载状态
|
|
export const usePageLoading = () => {
|
|
const [pageLoading, setPageLoading] = useState(false);
|
|
return [pageLoading, setPageLoading] as const;
|
|
};
|