UNPKG

preact

Version:

Fast 3kb React-compatible Virtual DOM library.

17 lines (13 loc) 453 B
// Intentionally not using a relative path to take advantage of // the TS version resolution mechanism import { Component, ComponentChild, ComponentChildren } from 'preact'; // // SuspenseList // ----------------------------------- export interface SuspenseListProps { children?: ComponentChildren; revealOrder?: 'forwards' | 'backwards' | 'together'; } export class SuspenseList extends Component<SuspenseListProps> { render(): ComponentChild; }