November 2018
Beginner
502 pages
10h 22m
English
Before we create our Tabs compound component, let's add reviews to the product page:
export interface IReview { comment: string; reviewer: string;}
export interface IProduct { ... reviews: IReview[];}
const products: IProduct[] = [ { id: 1, ... reviews: [ { comment: "Excellent! This does everything I want", reviewer: "Billy" }, { comment: "The best router I've ever worked with", reviewer: "Sally" } ] }, { id: 2, .. reviews: [ { comment: "I've found this really useful in a large app I'm working on", reviewer: "Billy" }, { ...Read now
Unlock full access