Skip to content

Instantly share code, notes, and snippets.

@rahulsahay19
Created September 11, 2017 09:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rahulsahay19/50d60578eecbecf38615ee676fab6142 to your computer and use it in GitHub Desktop.
Save rahulsahay19/50d60578eecbecf38615ee676fab6142 to your computer and use it in GitHub Desktop.
Reviews
export class Review {
reviewer: string;
comments:string;
}
export const REVIEWS = [
{reviewer: 'Rahul', comments:'Awesome Movie!'},
// {reviewer: 'Rohit', comments:'OK!'},
// {reviewer: 'Mohit', comments:'Not so great!'},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment