UNPKG

@aishwaryv/react-skeleton

Version:

Lightweight and minimalistic skeleton component for ReactJs

12 lines (11 loc) 280 B
import React from 'react'; import './styles.css'; import type { SkeletonTree } from './types'; /** * Skeleton component that renders a skeleton tree structure. * */ declare function Skeleton({ tree }: { tree: SkeletonTree; }): React.JSX.Element[]; export default Skeleton;