Hydrate Fallback

Hydrate Fallback

This is the HydrateFallback component...

Shown while React is hydrating on the client and the loader is running. This provides a smooth loading experience.

Example Code

export function HydrateFallback() {
  return (
    <div className="loading-spinner">
      <p>Loading...</p>
    </div>
  );
}