fix for production build
This commit was merged in pull request #18.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { useState, ChangeEvent, FC } from "react";
|
||||
import React, { useState, ChangeEvent } from "react";
|
||||
import Logo from "../../assets/icons/logo.svg";
|
||||
import Button from "../shared/Button";
|
||||
import { lowerMenuItems } from "../../utils/data";
|
||||
@@ -15,7 +15,7 @@ type HiddenMenuItems = {
|
||||
hideMenu?: boolean;
|
||||
};
|
||||
|
||||
const Header: FC<HiddenMenuItems> = ({
|
||||
const Header: React.FC<HiddenMenuItems> = ({
|
||||
hideSidebar = false,
|
||||
hideMenu = false,
|
||||
}) => {
|
||||
|
||||
Reference in New Issue
Block a user