-
Notifications
You must be signed in to change notification settings - Fork 6
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 #41 from Nico1eKim/feat/common-components
✨ feat: gnb, top app bar, bottom app bar, 세로형 카드 구현
- Loading branch information
Showing
33 changed files
with
305 additions
and
121 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import React from "react"; | ||
import Button from "@/components/button"; | ||
|
||
interface Props { | ||
onClickLeft: () => void; | ||
onClickRight: () => void; | ||
} | ||
|
||
const BottomDoubleButton = ({ onClickLeft, onClickRight }: Props) => { | ||
return ( | ||
<div className="fixed bottom-0 left-0 z-popup flex w-360 gap-8 border-t border-gray-50 bg-white-black px-20 pb-24 pt-12"> | ||
<div className="w-156"> | ||
{/* 추후 회색으로 변경 예정 */} | ||
<Button size="xl" type="lined" onClick={onClickLeft}> | ||
거절하기 | ||
</Button> | ||
</div> | ||
<div className="w-156"> | ||
<Button size="xl" type="lined" onClick={onClickRight}> | ||
승인하기 | ||
</Button> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default BottomDoubleButton; |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { ReactElement } from "react"; | ||
import Header from "./_components/Header"; | ||
|
||
interface Props { | ||
children: ReactElement; | ||
params: { id: number }; | ||
} | ||
|
||
const SettingLayout = ({ children, params }: Props) => { | ||
return ( | ||
<> | ||
<Header params={params} /> | ||
{children} | ||
</> | ||
); | ||
}; | ||
export default SettingLayout; |
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
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.