forked from orodrigogo/nlwcopa-mobile-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEmptyPoolList.tsx
More file actions
31 lines (26 loc) · 822 Bytes
/
Copy pathEmptyPoolList.tsx
File metadata and controls
31 lines (26 loc) · 822 Bytes
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
import { Row, Text, Pressable } from 'native-base';
export function EmptyPoolList() {
return (
<Row flexWrap="wrap" justifyContent="center">
<Text color="white" fontSize="sm" textAlign="center">
Você ainda não está participando de {'\n'} nenhum bolão, que tal
</Text>
<Pressable>
<Text textDecorationLine="underline" color="yellow.500" textDecoration="underline">
buscar um por código
</Text>
</Pressable>
<Text color="white" fontSize="sm" textAlign="center" mx={1}>
ou
</Text>
<Pressable>
<Text textDecorationLine="underline" color="yellow.500">
criar um novo
</Text>
</Pressable>
<Text color="white" fontSize="sm" textAlign="center">
?
</Text>
</Row>
);
}