// @flow import * as React from 'react'; import {Animated} from "react-native"; import type {CollapsibleComponentProps} from "./CollapsibleComponent"; import CollapsibleComponent from "./CollapsibleComponent"; type Props = { ...CollapsibleComponentProps } class CollapsibleSectionList extends React.Component { render() { return ( {this.props.children} ); } } export default CollapsibleSectionList;