February 2019
Beginner to intermediate
180 pages
4h 4m
English
This file will hold the customer type used by both <CustomerList /> and <Customer />. This is done to avoid any circular dependency compiler errors:
/* CustomerType.re */type address = { street: string, city: string, state: string, zip: string,};type t = { id: int, name: string, address, phone: string, email: string,};
Read now
Unlock full access