blob: a28b403628b566f6f352b0eb9711e74c329940fa (
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
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Avatar renders correctly 1`] = `
<div
className="Avatar"
>
<div
className="msg-avatar"
>
<a
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
href="/ugnich/"
onClick={[Function]}
>
<span>
ugnich
</span>
</a>
</span>
</div>
</div>
`;
|