File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
components/project/ProjectContent Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ function ProjectContent({ project }: Props): ReactElement {
1212 const {
1313 deployLink,
1414 playStoreLink,
15+ oneStoreLink,
1516 webLink,
1617 linkTreeLink,
1718 description,
@@ -84,6 +85,12 @@ function ProjectContent({ project }: Props): ReactElement {
8485 < DeployLinkButton target = "_blank" > Play Store</ DeployLinkButton >
8586 </ Link >
8687 ) }
88+ { /* One Store 링크 */ }
89+ { oneStoreLink && (
90+ < Link href = { oneStoreLink } passHref >
91+ < DeployLinkButton target = "_blank" > One Store</ DeployLinkButton >
92+ </ Link >
93+ ) }
8794 </ DeployBox >
8895 </ Container >
8996 ) ;
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ export interface Project {
2020 deployLink ?: string | null ;
2121 playStoreLink ?: string ;
2222 linkTreeLink ?: string ;
23+ oneStoreLink ?: string ;
2324 webLink ?: string ;
2425 description : string ;
2526}
You can’t perform that action at this time.
0 commit comments