blob: 3e8741019b60b3754944ba515d0f2afbd48efde7 (
plain) (
blame)
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
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Avatar renders correctly 1`] = `
<div
className="Avatar"
>
<div
className="msg-avatar"
>
<a
data-discover="true"
href="/ugnich/"
onClick={[Function]}
>
<img
alt="ugnich"
src="https://juick.com/i/a/1-deadbeef.png"
/>
</a>
</div>
<div
style={
{
"display": "flex",
"flexDirection": "column",
"justifyContent": "center",
}
}
>
<span>
<a
data-discover="true"
href="/ugnich/"
onClick={[Function]}
>
<span>
ugnich
</span>
</a>
</span>
</div>
</div>
`;
|