Refactor job list

This commit is contained in:
Patrick Fic
2021-02-08 22:32:47 -08:00
parent fafd2225ad
commit 2437808c33
9 changed files with 75 additions and 547 deletions

11
App.js
View File

@@ -4,7 +4,6 @@ import AppLoading from "expo-app-loading";
import * as FileSystem from "expo-file-system";
import * as Font from "expo-font";
import React from "react";
import { StatusBar as rnStatusBar, StyleSheet } from "react-native";
import { Provider } from "react-redux";
import { PersistGate } from "redux-persist/integration/react";
import * as Sentry from "sentry-expo";
@@ -62,13 +61,3 @@ export default class App extends React.Component {
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
alignItems: "center",
justifyContent: "center",
paddingTop: Platform.OS === "android" ? rnStatusBar.currentHeight : 0,
},
});