UNPKG

@douyinfe/semi-ui

Version:

A modern, comprehensive, flexible design system and UI library. Connect DesignOps & DevOps. Quickly build beautiful React apps. Maintained by Douyin-fe team.

10 lines (9 loc) 523 B
import React, { PureComponent } from 'react'; import { NodeListProps, NodeListState } from './interface'; export default class NodeList extends PureComponent<NodeListProps, NodeListState> { static contextType: React.Context<import("./treeContext").TreeContextValue>; constructor(props: NodeListProps); static getDerivedStateFromProps(props: NodeListProps, prevState: NodeListState): {}; onMotionEnd: () => void; render(): (string | number | boolean | Iterable<React.ReactNode> | React.JSX.Element)[]; }