diff --git a/src/components/InitialModal.tsx b/src/components/InitialModal.tsx new file mode 100644 index 00000000..4f73777e --- /dev/null +++ b/src/components/InitialModal.tsx @@ -0,0 +1,39 @@ +import MyModal from '@modal' +import { ThemeContext } from '@src/context/Theme' +import { globals } from '@styles' +import { useContext } from 'react' +import { StyleSheet, Text, TouchableOpacity } from 'react-native' + +import Button from './Button' + +interface IInitialModalProps { + visible: boolean + onConfirm: () => void + onCancel: () => void +} + +export default function InitialModal({ visible, onConfirm, onCancel }: IInitialModalProps) { + const { color, highlight } = useContext(ThemeContext) + return ( + + + Get started + + + You should add a mint that you trust before sending or receiving tokens. + +