ufts, sts, its, lts npx create-expo-app <tên project> --example with-tailwindcss npx expo install react-native-reanimated react-native-worklets react-native-paper @reduxjs/toolkit react-redux npx expo start --tunnel --web export type GroceryItem = { id: string; name: string; quantity: number; category: string; bought: boolean; create_at: string; }; export type Product = { id: string; name: string; category: string; description: string; price: number; }; |