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.
20 lines
375 B
Markdown
20 lines
375 B
Markdown
|
8 years ago
|
DocumentListItem example:
|
||
|
8 years ago
|
|
||
|
|
```js
|
||
|
8 years ago
|
<DocumentListItem
|
||
|
8 years ago
|
fileName="meow.jpg"
|
||
|
|
fileSize={1024 * 1000 * 2}
|
||
|
|
timestamp={Date.now()}
|
||
|
|
/>
|
||
|
8 years ago
|
<DocumentListItem
|
||
|
8 years ago
|
fileName="rickroll.wmv"
|
||
|
|
fileSize={1024 * 1000 * 8}
|
||
|
|
timestamp={Date.now() - 24 * 60 * 1000}
|
||
|
|
/>
|
||
|
8 years ago
|
<DocumentListItem
|
||
|
8 years ago
|
fileName="kitten.gif"
|
||
|
|
fileSize={1024 * 1000 * 1.2}
|
||
|
|
timestamp={Date.now() - 14 * 24 * 60 * 1000}
|
||
|
|
/>
|
||
|
|
```
|