#2 State management with Rematch - adding model

preview_player
Показать описание

Рекомендации по теме
Комментарии
Автор

export type User = {
id: string,
name: {
first: string,
last: string
},
picture: {
thumbnail: string
},
location: {
street: string,
state: string,
city: string,
postcode: number,
},
isFollowing: boolean
}

export type Toast = {
id: number,
message: string
}

ProgrammingWithOsku
Автор

Been looking into your guide here on Rematch - really wish you had created a sandbox environment for the code aswell :D

MrAndreasBlaa
Автор

What is the extension that shows the size of the imported packages?

mrkanalelgn