You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
487 B
Markdown
24 lines
487 B
Markdown
```jsx
|
|
<div>
|
|
<DocumentListItem
|
|
fileName="meow.jpg"
|
|
fileSize={1024 * 1000 * 2}
|
|
timestamp={Date.now()}
|
|
i18n={util.i18n}
|
|
/>
|
|
<DocumentListItem
|
|
fileName="rickroll.wmv"
|
|
fileSize={1024 * 1000 * 8}
|
|
timestamp={Date.now() - 24 * 60 * 1000}
|
|
i18n={util.i18n}
|
|
/>
|
|
<DocumentListItem
|
|
fileName="kitten.gif"
|
|
fileSize={1024 * 1000 * 1.2}
|
|
timestamp={Date.now() - 14 * 24 * 60 * 1000}
|
|
shouldShowSeparator={false}
|
|
i18n={util.i18n}
|
|
/>
|
|
</div>
|
|
```
|