Skip to content

Commit 4060232

Browse files
committed
docs: multi display on example
1 parent 98e6fb3 commit 4060232

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

example/src/App.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,15 @@ function App({
239239
: '-'}
240240
</Text>
241241
</Row>
242+
<Row>
243+
<Label>Dates</Label>
244+
<Text>
245+
{dates
246+
?.map((date) => date && dateFormatter.format(date))
247+
.filter(Boolean)
248+
.join(', ')}
249+
</Text>
250+
</Row>
242251
</View>
243252
<Enter />
244253
<Enter />

0 commit comments

Comments
 (0)