├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── aniuta.png ├── app.json ├── babel.config.js ├── example ├── .expo-shared │ └── assets.json ├── .gitignore ├── App.js ├── app.json ├── assets │ ├── favicon.png │ ├── icon.png │ └── splash.png ├── babel.config.js ├── package.json ├── src │ ├── components │ │ ├── counterButtons.js │ │ └── counterDisplay.js │ └── stores │ │ └── useCounter.js └── yarn.lock ├── package.json ├── src └── index.tsx ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/README.md -------------------------------------------------------------------------------- /aniuta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/aniuta.png -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/babel.config.js -------------------------------------------------------------------------------- /example/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/example/.expo-shared/assets.json -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/example/App.js -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/example/assets/favicon.png -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/example/assets/splash.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/components/counterButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/example/src/components/counterButtons.js -------------------------------------------------------------------------------- /example/src/components/counterDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/example/src/components/counterDisplay.js -------------------------------------------------------------------------------- /example/src/stores/useCounter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/example/src/stores/useCounter.js -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/package.json -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrius/aniuta/HEAD/yarn.lock --------------------------------------------------------------------------------