@@ -9,9 +9,30 @@ import { List } from 'flowbite-react';
9
9
function Component() {
10
10
return (
11
11
<List>
12
- <List.Item>At least 10 characters (and up to 100 characters)</List.Item>
13
- <List.Item>At least one lowercase character</List.Item>
14
- <List.Item>Inclusion of at least one special character, e.g., ! @ # ?</List.Item>
12
+ <List.Item>
13
+ List item one
14
+ <List ordered nested>
15
+ <List.Item>You might feel like you are being really "organized" o</List.Item>
16
+ <List.Item>Nested navigation in UIs is a bad idea too, keep things as flat as possible.</List.Item>
17
+ <List.Item>Nesting tons of folders in your source code is also not helpful.</List.Item>
18
+ </List>
19
+ </List.Item>
20
+ <List.Item>
21
+ List item two
22
+ <List ordered nested>
23
+ <List.Item>I'm not sure if we'll bother styling more than two levels deep.</List.Item>
24
+ <List.Item>Two is already too much, three is guaranteed to be a bad idea.</List.Item>
25
+ <List.Item>If you nest four levels deep you belong in prison.</List.Item>
26
+ </List>
27
+ </List.Item>
28
+ <List.Item>
29
+ List item three
30
+ <List ordered nested>
31
+ <List.Item>Again please don't nest lists if you want</List.Item>
32
+ <List.Item>Nobody wants to look at this.</List.Item>
33
+ <List.Item>I'm upset that we even have to bother styling this.</List.Item>
34
+ </List>
35
+ </List.Item>
15
36
</List>
16
37
);
17
38
}
@@ -23,9 +44,30 @@ import { List, ListItem } from 'flowbite-react';
23
44
function Component() {
24
45
return (
25
46
<List>
26
- <ListItem>At least 10 characters (and up to 100 characters)</ListItem>
27
- <ListItem>At least one lowercase character</ListItem>
28
- <ListItem>Inclusion of at least one special character, e.g., ! @ # ?</ListItem>
47
+ <ListItem>
48
+ List item one
49
+ <List ordered nested>
50
+ <ListItem>You might feel like you are being really "organized" o</ListItem>
51
+ <ListItem>Nested navigation in UIs is a bad idea too, keep things as flat as possible.</ListItem>
52
+ <ListItem>Nesting tons of folders in your source code is also not helpful.</ListItem>
53
+ </List>
54
+ </ListItem>
55
+ <ListItem>
56
+ List item two
57
+ <List ordered nested>
58
+ <ListItem>I'm not sure if we'll bother styling more than two levels deep.</ListItem>
59
+ <ListItem>Two is already too much, three is guaranteed to be a bad idea.</ListItem>
60
+ <ListItem>If you nest four levels deep you belong in prison.</ListItem>
61
+ </List>
62
+ </ListItem>
63
+ <ListItem>
64
+ List item three
65
+ <List ordered nested>
66
+ <ListItem>Again please don't nest lists if you want</ListItem>
67
+ <ListItem>Nobody wants to look at this.</ListItem>
68
+ <ListItem>I'm upset that we even have to bother styling this.</ListItem>
69
+ </List>
70
+ </ListItem>
29
71
</List>
30
72
);
31
73
}
0 commit comments