UNPKG

react-tiled-background

Version:

Reusable React component that adds an animated, Excel-style tile grid overlay to any element.

10 lines (7 loc) 220 B
import * as React from 'react'; import { ReactNode } from 'react'; interface TiledBackgroundProps { children: ReactNode; } declare const TiledBackground: React.FC<TiledBackgroundProps>; export { TiledBackground };