Skip to content

Commit

Permalink
fix: HomePage default export로 변경 (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
junyeokk committed May 13, 2024
1 parent bcddedb commit f53bc21
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/pages/HomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { PageContainer, MainContent, StyledImage, ElementContainer } from "@/pag

import mainPageImage from "@/assets/main_page.jpg";

const HomePage: React.FC = () => {
export default function HomePage() {
const quickAccessRef = useRef<HTMLDivElement>(null);

const scrollToQuickAccess = () => {
Expand Down Expand Up @@ -46,6 +46,4 @@ const HomePage: React.FC = () => {
</MainContent>
</PageContainer>
);
};

export default HomePage;
}

0 comments on commit f53bc21

Please sign in to comment.