mirror of
https://github.com/thedevs-network/kutt-extension.git
synced 2026-02-03 05:43:24 +00:00
24 lines
418 B
TypeScript
24 lines
418 B
TypeScript
import {memo} from 'react';
|
|
|
|
import styles from './Header.module.scss';
|
|
|
|
function Header() {
|
|
return (
|
|
<>
|
|
<header className={styles.header}>
|
|
<img
|
|
className={styles.logo}
|
|
width="32"
|
|
height="32"
|
|
src="../assets/logo.png"
|
|
alt="logo"
|
|
/>
|
|
|
|
<h1 className={styles.title}>Kutt</h1>
|
|
</header>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default memo(Header);
|