A highly customizable React top-loading bar component with hook-based, ref-based, and state-based control patterns.
64
Build a React component that displays a loading bar at the top of the page during navigation or async operations.
Your component should:
@generates
import React from 'react';
interface PageLoaderProps {
color?: string;
height?: number;
}
export const PageLoader: React.FC<PageLoaderProps>;Provides top-of-page loading bar functionality with customization options.
@satisfied-by
Install with Tessl CLI
npx tessl i tessl/npm-react-top-loading-barevals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10