Slide 45
Slide 45 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 }
]);
45
@evilmartians