File: `SockReviews.tsx` Right now the `<SockReviewsDisplay />` displays just the amount of reviews. This just won't do for Business. ```typescript // models.ts export interface SockReviewModel { name: string; rating: number; fullReview: string; } ``` - [ ] Display all reviews - [ ] Show a `more...` link if the fullReview is too long - [ ] Only show first 2 reviews and allow the rest to be made visible with a button - [ ] Show the rating with stars - [ ] Add a button to sort on rating asc/desc