-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from 9oormDari/feature/UserApi
[#24] ๋ก๊ทธ์ธ, ํ์๊ฐ์ ์ฐ๊ฒฐ
- Loading branch information
Showing
16 changed files
with
255 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
import MemberCard from "./MemberList/MemberCard"; | ||
import MemberCard from './MemberList/MemberCard'; | ||
|
||
export default function MemberList() { | ||
return ( | ||
<> | ||
<div className="w-full text-4xl font-bold text-left px-10 pt-10"> | ||
<span className="text-blue-400">์ง์์์กฐ</span> | ||
<span> ํ์๋ค์</span> | ||
</div> | ||
<div className="text-4xl font-bold text-left w-full px-10 pt-4"> | ||
๋ชฉํ ์ธ์ฆ์ ํ์ธํด๋ณผ๋์? | ||
</div> | ||
<div className="w-full text-4xl font-bold text-left px-10 pt-10"> | ||
<span className="text-blue-400">์ง์์์กฐ</span> | ||
<span> ํ์๋ค์</span> | ||
</div> | ||
<div className="text-4xl font-bold text-left w-full px-10 pt-4"> | ||
๋ชฉํ ์ธ์ฆ์ ํ์ธํด๋ณผ๋์? | ||
</div> | ||
|
||
<div className="flex flex-row gap-10 pt-10"> | ||
<MemberCard name="์กฐ์1"/> | ||
<MemberCard name="์กฐ์2"/> | ||
<MemberCard name="์กฐ์3"/> | ||
</div> | ||
<div className="flex flex-row gap-10 pt-10"> | ||
<MemberCard name="์กฐ์1" /> | ||
<MemberCard name="์กฐ์2" /> | ||
<MemberCard name="์กฐ์3" /> | ||
</div> | ||
</> | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
interface MemberCardProps { | ||
name: string; | ||
name: string; | ||
} | ||
|
||
export default function MemberCard({name}: MemberCardProps) { | ||
return ( | ||
<div className="flex flex-col items-center justify-center w-[267px] h-[406px] bg-gray-200 rounded-lg"> | ||
<div className="w-[80px] h-[80px] bg-gray-300 rounded-full"></div> | ||
<div className="text-lg font-bold">{name}</div> | ||
<button className="w-[200px] h-[40px] bg-blue-400 rounded-lg">๋ณด๋ฌ ๊ฐ๊ธฐ</button> | ||
</div> | ||
); | ||
} | ||
export default function MemberCard({ name }: MemberCardProps) { | ||
return ( | ||
<div className="flex flex-col items-center justify-center w-[267px] h-[406px] bg-gray-200 rounded-lg"> | ||
<div className="w-[80px] h-[80px] bg-gray-300 rounded-full"></div> | ||
<div className="text-lg font-bold">{name}</div> | ||
<button className="w-[200px] h-[40px] bg-blue-400 rounded-lg"> | ||
๋ณด๋ฌ ๊ฐ๊ธฐ | ||
</button> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.