UNPKG

react-native-root-siblings

Version:

react native root sibling elements manager

11 lines (10 loc) 401 B
import { Component, ReactNode } from 'react'; interface Props { shouldUpdate: boolean; children: ReactNode; } export default class extends Component<Props> { shouldComponentUpdate(nextProps: Props): boolean; render(): string | number | true | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined; } export {};