Create addAccount function

This commit is contained in:
IshaVenikar 2024-02-15 10:55:41 +05:30
parent 96c7fedacf
commit 894829dd9d

29
components/Section.tsx Normal file
View File

@ -0,0 +1,29 @@
import { PropsWithChildren } from 'react';
import { Text, View, useColorScheme } from 'react-native';
import { Colors } from 'react-native/Libraries/NewAppScreen';
import styles from '../styles/stylesheet';
type SectionProps = PropsWithChildren<{
title: string;
}>;
const Section = ({ title }: SectionProps): React.JSX.Element => {
const isDarkMode = useColorScheme() === 'dark';
return (
<View style={styles.sectionContainer}>
<Text
style={[
styles.sectionTitle,
{
color: isDarkMode ? Colors.white : Colors.black,
},
]}>
{title}
<Text style={styles.sectionDescription} />
</Text>
</View>
);
};
export { Section };