Skip to content

Commit

Permalink
rename: Header -> LandingPageHeader으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
milk717 committed Nov 10, 2023
1 parent 4790056 commit ac23c2f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { css } from '@emotion/react';
import Logo from '@common/Logo/Logo';
import GoogleLoginButton from '@components/landingPage/GoogleLoginButton';

const Header: React.FC = () => {
const LandingPageHeader: React.FC = () => {
return (
<div
css={css`
Expand All @@ -21,4 +21,4 @@ const Header: React.FC = () => {
);
};

export default Header;
export default LandingPageHeader;
4 changes: 2 additions & 2 deletions FE/src/components/landingPage/Layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { css } from '@emotion/react';
import Header from '@components/landingPage/Header';
import LandingPageHeader from '@components/landingPage/landingPageHeader';
import Layout from '@components/layout/Layout';
import { theme } from '@styles/theme';

Expand All @@ -17,7 +17,7 @@ const LandingPageLayout: React.FC<LandingPageLayoutProps> = ({ children }) => {
background: ${theme.gradient.linear.skyblue};
`}
>
<Header />
<LandingPageHeader />
<div
css={[
css`
Expand Down

0 comments on commit ac23c2f

Please sign in to comment.