Skip to content

Instantly share code, notes, and snippets.

@ioness
Created April 19, 2018 02:08
Show Gist options
  • Save ioness/2937f3c188ad40318f30800ee5c680ef to your computer and use it in GitHub Desktop.
Save ioness/2937f3c188ad40318f30800ee5c680ef to your computer and use it in GitHub Desktop.
List.tsx
import * as React from 'react'
interface Props {
indexes: [ number ],
component: any
}
export default function List (props: Props): any {
return props.indexes.map((index: number): any => {
return <props.component key={index} id={index.toString()}/>
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment