frontend/Components/header/index.tsx
2022-08-26 22:49:44 +03:00

31 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { useRouter } from "next/router";
import React from "react";
import styles from "./header.module.css"
import 'antd/dist/antd.css';
export const Header:React.FC = () =>{
let router = useRouter()
return(
<div className={styles.header}>
<div className={styles.logo} onClick={()=>router.push("/")}>
<img src="/images/logo.svg"></img>
</div>
<div className={styles.itemWrapper}>
<div className={styles.item} onClick={()=>router.push("about")}>
Про нас
</div>
<div className={styles.item} onClick={()=>router.push("how-to-use")}>
Как пользоваться
</div>
<div className={styles.item} onClick={()=>router.push("/")}>
Главная
</div>
<div className={styles.item} onClick={()=>router.push("history")}>
История файлов
</div>
</div>
</div>
);
}