-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathHeader.tsx
More file actions
27 lines (24 loc) · 708 Bytes
/
Copy pathHeader.tsx
File metadata and controls
27 lines (24 loc) · 708 Bytes
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
import React from 'react';
import styles from './Header.module.scss';
import codepen from '/images/codepen.png';
import github from '/images/github.png';
const Header: React.FC = () => {
return (
<header className={styles.header}>
<span className={styles.header_brand}>L aders</span>
<nav>
<a
target="_blank"
style={{ backgroundImage: `url(${codepen})` }}
href="https://codepen.io/vineethtrv/pen/NWxZqMM"
></a>
<a
target="_blank"
style={{ backgroundImage: `url(${github})` }}
href="https://github.com/vineethtrv/css-loader"
></a>
</nav>
</header>
);
};
export default Header;