-
Masukan ini
npm install tailwindcss --save-dev -
Masukan perintah ini
npx tailwind init tailwind.js --full -
Masukan perintah ini :
| import AsyncStorage from '@react-native-async-storage/async-storage'; | |
| interface IDefaultAppStore { | |
| customValue?: boolean; | |
| // your interface | |
| } | |
| const STORAGE_KEY = '@default_app'; | |
| const DEFAULT_APP_STORE: IDefaultAppStore = { | |
| customValue: false, |
| /********************* | |
| * BREAKPOINTS FOR SASS | |
| * @author : Rizky Bayu Oktavian | |
| * @twitter : @rbayuokt | |
| *********************/ | |
| @mixin phone { | |
| @media screen and (min-width: 320px) and (max-width: 480px){ | |
| @content; | |
| } |