-
Notifications
You must be signed in to change notification settings - Fork 4k
Expand file tree
/
Copy pathFeedExampleSizeLarge.js
More file actions
60 lines (54 loc) · 1.59 KB
/
FeedExampleSizeLarge.js
File metadata and controls
60 lines (54 loc) · 1.59 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import React from 'react'
import { Feed, Icon } from 'semantic-ui-react'
const FeedExampleSizeLarge = () => (
<Feed size='large'>
<Feed.Event>
<Feed.Label image='/images/avatar/small/elliot.jpg' />
<Feed.Content>
<Feed.Summary>
<Feed.User>Elliot Fu</Feed.User> added you as a friend
<Feed.Date>1 Hour Ago</Feed.Date>
</Feed.Summary>
<Feed.Meta>
<Feed.Like>
<Icon name='like' />4 Likes
</Feed.Like>
</Feed.Meta>
</Feed.Content>
</Feed.Event>
<Feed.Event>
<Feed.Label icon='pencil' />
<Feed.Content>
<Feed.Summary>
You submitted a new post to the page
<Feed.Date>3 days ago</Feed.Date>
</Feed.Summary>
<Feed.Extra text>
I'm having a BBQ this weekend. Come by around 4pm if you can.
</Feed.Extra>
<Feed.Meta>
<Feed.Like>11 Likes</Feed.Like>
</Feed.Meta>
</Feed.Content>
</Feed.Event>
<Feed.Event>
<Feed.Label image='/images/avatar/small/helen.jpg' />
<Feed.Content>
<Feed.Date>4 days ago</Feed.Date>
<Feed.Summary>
<a>Helen Troy</a> added <a>2 new illustrations</a>
</Feed.Summary>
<Feed.Extra images>
<a>
<img alt="Wireframe" src='/images/wireframe/image.png' />
</a>
<a>
<img alt="Wireframe" src='/images/wireframe/image.png' />
</a>
</Feed.Extra>
<Feed.Meta like='1 Like' />
</Feed.Content>
</Feed.Event>
</Feed>
)
export default FeedExampleSizeLarge