Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
15 changes: 10 additions & 5 deletions customfront/src/App.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom';
import Home from './page/home';
import Mypage from './page/mypage';

import Pwchange from './page/pwchange';
import Pwchange1 from './page/pwchange1';
import Info2 from './page/info2';
Expand All @@ -11,7 +11,9 @@ import Changeinfo3 from './page/changeinfo3';
import Main0 from './page/main0';
import Main4 from './page/main4';
import Login from './page/login';
import Mypage from './page/mypage';
import Membership from './page/membership';

import './App.css';
import './index.css';

Expand All @@ -21,7 +23,7 @@ function App() {
<div className="App">
<Routes>
<Route path="/" element={<Home />} /> {/* 기본 경로 처리 */}
<Route path="/mypage" element={<Mypage />} />

<Route path="/pwchange" element={<Pwchange />} />
<Route path="/pwchange1" element={<Pwchange1 />} />
<Route path="/info2" element={<Info2 />} />
Expand All @@ -31,12 +33,15 @@ function App() {
<Route path="/main0" element={<Main0 />} />
<Route path="/main4" element={<Main4 />} />
<Route path="/login" element={<Login />} />
<Route path="/mypage" element={<Mypage />} />
<Route path="/membership" element={<Membership />} />



</Routes>
</div>
</Router>
);
}
} //1
//2

export default App;
export default App;
2 changes: 1 addition & 1 deletion customfront/src/page/membership.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,4 @@ const Membership = () => {
);
};

export default Membership;
export default Membership;
12 changes: 6 additions & 6 deletions customfront/src/page/mypage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ const Mypage = () => {

<m.Keyword>
<m.Wrap>
<m.SmallBox>#20대</m.SmallBox>
<m.SmallBox>#여성</m.SmallBox>
<m.SmallOne>#20대</m.SmallOne>
<m.SmallTwo>#여성</m.SmallTwo>
</m.Wrap>
<m.Wrap2>
<m.SmallBox>#당뇨</m.SmallBox>
<m.SmallBox>#160~165cm</m.SmallBox>
<m.SmallBox>#60~65kg</m.SmallBox>
<m.SmallThree>#당뇨</m.SmallThree>
<m.SmallFour>#160~165cm</m.SmallFour>
<m.SmallFive>#60~65kg</m.SmallFive>
</m.Wrap2>
</m.Keyword>

Expand Down Expand Up @@ -126,7 +126,7 @@ const Mypage = () => {
<m.Kit>
🔥 후기를 작성하고, 키워드를 강화해요!
</m.Kit>

cd
<m.Check>나의 리뷰 확인하기</m.Check>
<m.Write>리뷰 작성하기</m.Write>

Expand Down
Loading