-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNavbar.test.jsx.snap
More file actions
62 lines (61 loc) · 1.22 KB
/
Navbar.test.jsx.snap
File metadata and controls
62 lines (61 loc) · 1.22 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
61
62
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Navbar Component 1`] = `
<nav
className="tablet:pl-3 tablet:pr-3 fixed m-auto flex w-[100%] items-center bg-white pt-[1.5rem] pb-[1.5rem] pl-8 pr-8 font-opensans"
>
<div
className="navbar flex w-[100%] items-center justify-between"
>
<div
className="logo tablet:text-xl text-2xl"
>
<a
href="/#"
onClick={[Function]}
onMouseEnter={[Function]}
onTouchStart={[Function]}
>
<span
className="font-black"
>
COOK
</span>
IEZ
</a>
</div>
<div
className="nav-list"
>
<ul
className="tablet:text-base flex items-center gap-10 text-lg"
>
<li
onClick={[Function]}
>
Login
</li>
<li>
Sign up
</li>
<li>
<a
href="/"
onClick={[Function]}
onMouseEnter={[Function]}
>
En
</a>
/
<a
href="/"
onClick={[Function]}
onMouseEnter={[Function]}
>
Tr
</a>
</li>
</ul>
</div>
</div>
</nav>
`;