Skip to content

Commit

Permalink
refactor(header): 🎉 hidden timer
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Aug 9, 2023
1 parent 88c1779 commit 07f99df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Header/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import React, { ReactElement } from "react";
import HeaderDropdownMenu from "../HeaderDropdownMenu/HeaderDropdownMenu";
import Breadcrumb from "../Breadcrumb/Breadcrumb";
import TimerDropdownMenu from "../TimerDropdownMenu/TimerDropdownMenu";
// import TimerDropdownMenu from "../TimerDropdownMenu/TimerDropdownMenu";
import NotificationDropdownMenu from "../NotificationDropdownMenu/NotificationDropdownMenu";

export default function Header(): ReactElement {
return (
<div className="w-full h-16 px-4 flex justify-between items-center bg-layer-light-50 text-layer-dark-200 shadow-md animate__animated animate__fadeInDown z-30">
<Breadcrumb />
<div className="flex items-center gap-4">
<TimerDropdownMenu />
{/* <TimerDropdownMenu /> */}
<NotificationDropdownMenu />
<HeaderDropdownMenu />
</div>
Expand Down

0 comments on commit 07f99df

Please sign in to comment.