Additions Channel Testing

This commit is contained in:
Patrick Fic
2021-05-20 16:53:00 -07:00
parent 130dac3921
commit f4b045bc33
3 changed files with 10 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
import Constants from "expo-constants";
import React from "react";
import { useTranslation } from "react-i18next";
import { Button, View } from "react-native";
import { Button, View, Text } from "react-native";
import { Title } from "react-native-paper";
import { purgeStoredState } from "redux-persist";
import SignOutButton from "../sign-out-button/sign-out-button.component";
@@ -24,6 +24,7 @@ export default function ScreenSettingsComponent() {
</Title>
<SignOutButton />
<Button title="Purge State" onPress={() => purgeStoredState()} />
<Text>Test Channel</Text>
</View>
);
}