diff options
Diffstat (limited to 'src/components/Header')
| -rw-r--r-- | src/components/Header/index.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/Header/index.tsx b/src/components/Header/index.tsx index bdc4919..874ba6e 100644 --- a/src/components/Header/index.tsx +++ b/src/components/Header/index.tsx @@ -1,5 +1,6 @@ import React from "react"; import { IoInformationCircleOutline } from "react-icons/io5"; +import { appName } from "../../constants"; import * as Styled from "./index.styled"; @@ -18,7 +19,7 @@ export function Header({ openInfoPopUp }: Props) { height={30} /> - <Styled.Logo>EpicWolverine's Heardle</Styled.Logo> + <Styled.Logo>{appName}</Styled.Logo> <a href="#"></a> </Styled.Content> </Styled.Container> |
