UNPKG

react-flow-app

Version:

🚀 This is a React.js library to simplify navigations focused in events (user actions) for smooth integrations.

8 lines (7 loc) • 278 B
import React from 'react'; import './placeholder.styles.css'; export interface PlaceholderProps { loading: boolean; style?: React.CSSProperties; } export declare const Placeholder: ({ children, loading }: React.PropsWithChildren<PlaceholderProps>) => React.JSX.Element;