Advertisement
Guest User

Untitled

a guest
Aug 30th, 2016
880
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. export interface IDCLabelProps {
  2.   thisCount: number;
  3. }
  4.  
  5. const DCLabel : React.StatelessComponent<IDCLabelProps> = (props) => (
  6.   <div>{props.thisCount}</div>
  7. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement