-
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 #113 from YAPP-Github/dev
Release 0.1.2
- Loading branch information
Showing
81 changed files
with
1,427 additions
and
396 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
VITE_KAKAO_JAVASCRIPT_KEY=02e0caae3e4116da61d734a06528cd86 | ||
VITE_KAKAO_RESTAPI_KEY=09bebf5106adf50d6a204a7ac2c22779 | ||
VITE_KAKAO_OPEN_URL=https://kauth.kakao.com/oauth/authorize?client_id={clientId}&redirect_uri={redirectUri}&response_type=code&prompt=login | ||
VITE_SERVER_URL=http://49.50.175.112:8080 |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { Button } from '@/components/base'; | ||
import { palette } from '@/lib/styles/palette'; | ||
import React from 'react'; | ||
import styled from 'styled-components'; | ||
|
||
function CompleteButton() { | ||
return ( | ||
<ButtonStyled size="medium" variant="grayBlack"> | ||
이미 결제를 완료하였습니다. | ||
</ButtonStyled> | ||
); | ||
} | ||
|
||
const ButtonStyled = styled(Button)` | ||
color: white; | ||
font-weight: 700; | ||
background-color: ${palette.disableColor}; | ||
`; | ||
|
||
export default CompleteButton; |
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,15 @@ | ||
import { Button } from '@/components/base'; | ||
import React from 'react'; | ||
|
||
function EndButton() { | ||
const handleClick = () => { | ||
console.log('asd'); | ||
}; | ||
return ( | ||
<Button onClick={handleClick} size="medium" variant={'kakao'}> | ||
<strong>카카오페이</strong>로 간편하고 안전하게 결제 | ||
</Button> | ||
); | ||
} | ||
|
||
export default EndButton; |
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,15 @@ | ||
import { Button } from '@/components/base'; | ||
import React from 'react'; | ||
|
||
function NoneButton() { | ||
const handleClick = () => { | ||
console.log('asd'); | ||
}; | ||
return ( | ||
<Button onClick={handleClick} size="medium" variant={'default'}> | ||
설문하러 가기 | ||
</Button> | ||
); | ||
} | ||
|
||
export default NoneButton; |
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,15 @@ | ||
import { Button } from '@/components/base'; | ||
import React from 'react'; | ||
|
||
function SuccessButton() { | ||
const handleClick = () => { | ||
console.log('asd'); | ||
}; | ||
return ( | ||
<Button onClick={handleClick} size="medium" variant={'kakao'}> | ||
<strong>카카오페이</strong>로 간편하고 안전하게 결제 | ||
</Button> | ||
); | ||
} | ||
|
||
export default SuccessButton; |
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,15 @@ | ||
import { Button } from '@/components/base'; | ||
import React from 'react'; | ||
|
||
function WaitingButton() { | ||
const handleClick = () => { | ||
console.log('asd'); | ||
}; | ||
return ( | ||
<Button onClick={handleClick} size="medium" variant={'default'}> | ||
랜덤매칭 | ||
</Button> | ||
); | ||
} | ||
|
||
export default WaitingButton; |
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.