Skip to content

Commit

Permalink
feat: [#72] HobbyForm에 Background 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
SeyeonJang committed Jul 29, 2024
1 parent df16aa9 commit 6994574
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/pages/Hobbyform.jsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
import React from "react";
import { useNavigate } from "react-router-dom";
import HeaderNav from "../components/HeaderNav.jsx";
import "../css/pages/Hobbyform.css";
import { useRecoilState } from "recoil";
import { userState } from "../Atoms";
import hobbyIcons from "../data/hobbyIcons.jsx"; // 취미 아이콘 데이터
import HeaderNav from "../components/HeaderNav.jsx";
import ProgressBar from "../components/Progressbar.jsx";
import Background from "../components/Background.jsx";
import MemoizedHobbyElement from "../components/HobbyElement.jsx";
import MemoizedHobbyChoice from "../components/HobbyChoice.jsx";
import ProgressBar from "../components/Progressbar.jsx";
import "../css/pages/Hobbyform.css";

function Hobbyform() {
const navigate = useNavigate();
Expand Down Expand Up @@ -62,6 +63,7 @@ function Hobbyform() {

return (
<div className="container">
<Background/>
<HeaderNav />
<div className="content">
<div className="info-card">
Expand Down

0 comments on commit 6994574

Please sign in to comment.