mirror of
https://github.com/Ai-hack-MAGNUM-OPUS/frontend.git
synced 2024-11-22 09:36:40 +03:00
12 lines
244 B
TypeScript
12 lines
244 B
TypeScript
|
import React from "react";
|
||
|
import styles from "./header.module.css"
|
||
|
|
||
|
export const Header:React.FC = () =>{
|
||
|
return(
|
||
|
<div className={styles.header}>
|
||
|
<div className={styles.item}>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
}
|