// React
import { ScrollView, View, Text, StyleSheet, Image } from 'react-native';
import { useTranslation } from 'react-i18next';
const Section = ({ source, text }) => {
return (
{text}
);
};
const Wait = () => {
const { t } = useTranslation();
return (
{t("wait.title")}
);
};
export default Wait;
const styles = StyleSheet.create({
outerScrollview: {
flex: 1
},
innerScrollview: {
flexGrow: 1,
justifyContent: "space-between",
alignItems: 'center',
padding: 30,
gap: 30
},
title: {
textAlign: 'center',
fontSize: 18,
fontWeight: "bold"
},
section: {
flexDirection: "row",
alignItems: "center",
justifyContent: "center",
gap: 30,
},
image: {
width: 70,
height: 70,
},
description: {
flex: 1,
fontSize: 15,
}
});