-
Notifications
You must be signed in to change notification settings - Fork 4
/
App.tsx
38 lines (34 loc) · 895 Bytes
/
App.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import type { BaseToastProps } from 'react-native-toast-message';
import Toast, { BaseToast, ErrorToast } from 'react-native-toast-message';
import { RecoilRoot } from 'recoil';
import { BottomTabNavigate } from './src/Navigate/BottomTabNavigate';
export default function App() {
const toastConfig = {
success: (props: BaseToastProps) => (
<BaseToast
{...props}
style={{ borderLeftColor: '#69C779' }}
contentContainerStyle={{ paddingHorizontal: 15 }}
text1Style={{
fontSize: 15,
fontWeight: '400',
}}
/>
),
error: (props: BaseToastProps) => (
<ErrorToast
{...props}
text1Style={{
fontSize: 15,
fontWeight: '400',
}}
/>
),
};
return (
<RecoilRoot>
<BottomTabNavigate />
<Toast config={toastConfig} />
</RecoilRoot>
);
}