UNPKG

use-background-image

Version:

useBackgroundImage: for loading background images with just one tiny hook!

12 lines (11 loc) 293 B
interface State { src: string; isLoading: boolean; hasError: boolean; } export interface UseBackgroundImageProps { src: string; placeholder?: string; } export declare function useBackgroundImage({ src, placeholder, }: UseBackgroundImageProps): State; export {};