Slide 42
Slide 42 text
Creating atom store for products in catalog:
// core/state.ts
import { atom } from 'nanostores';
export const $products = atom([
{ name: 'Nano Phone', price: 30 },
{ name: 'Nano TV', price: 75 },
{ name: 'Nano Laptop', price: 75 }
]);
42
@evilmartians