Skip to content

Instantly share code, notes, and snippets.

@DimaDaxDadeco
Created February 22, 2017 09:36
Show Gist options
  • Save DimaDaxDadeco/d727f8e8305f3f4c7cf7ea8b136d3198 to your computer and use it in GitHub Desktop.
Save DimaDaxDadeco/d727f8e8305f3f4c7cf7ea8b136d3198 to your computer and use it in GitHub Desktop.
import * as React from 'react';
interface IProps {
key: number;
}
const NewsItem = (props: IProps) => {
return (
<div>
id: {props.key}
</div>
);
};
export { NewsItem }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment