import React from 'react'; import { ScrollView } from 'react-native'; import ClipElement from './ClipElement'; export default class ClipList extends React.Component { constructor(props: any) { super(props); } createClipElement(title: string): JSX.Element { return ; } render(): JSX.Element { return {this.props.clips.map((entry: any) => this.createClipElement(entry.title))} ; } }