itenium-be / React-New-Features

React.js tutorial. Claim an exercise by replying to the issue. Create a PR per Task (per checkbox).
4 stars 4 forks source link

SockReviewsDisplay: Show all reviews #8

Open Laoujin opened 5 years ago

Laoujin commented 5 years ago

File: SockReviews.tsx

Right now the <SockReviewsDisplay /> displays just the amount of reviews. This just won't do for Business.

// models.ts
export interface SockReviewModel {
  name: string;
  rating: number;
  fullReview: string;
}