Hiyve Components - v1.0.0
    Preparing search index...
    • Hook to access the file cache context.

      Returns FileCacheContextValue

      The file cache context value

      Error if used outside of FileCacheProvider

      function MyFileComponent() {
      const { isReady, getFileTree, uploadFile } = useFileCache();

      if (!isReady) return <div>Loading...</div>;

      // Use file operations...
      }