ソースを参照

custom hook to detect if localStorage is loaded

Aykut Saraç 3 年 前
コミット
d3f9cca4d1
1 ファイル変更9 行追加0 行削除
  1. 9 0
      src/hooks/useLoading.tsx

+ 9 - 0
src/hooks/useLoading.tsx

@@ -0,0 +1,9 @@
+import { useEffect, useState } from "react";
+
+export const useLoading = () => {
+  const [loaded, setLoaded] = useState(false);
+
+  useEffect(() => setLoaded(true), []);
+  
+  return loaded;
+};