added camera controls component and updated camera ui

This commit is contained in:
Patrick Fic
2020-11-12 21:45:57 -08:00
parent e31f621a8f
commit 79ec14fe53
6 changed files with 203 additions and 86 deletions

View File

@@ -1,5 +1,6 @@
import { all, call, takeLatest } from "redux-saga/effects";
import PhotosActionTypes from "./photos.types";
import * as FileSystem from "expo-file-system";
export function* onRemoveAllPhotos() {
yield takeLatest(PhotosActionTypes.REMOVE_ALL_PHOTOS, removeAllPhotosAction);