-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
326 additions
and
221 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
File renamed without changes.
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,9 +1,12 @@ | ||
import React from 'react' | ||
import React from 'react'; | ||
|
||
const ReserveStatus = () => { | ||
return ( | ||
<div>ReserveStatus</div> | ||
) | ||
} | ||
<div className="reservation_main"> | ||
ReserveStatus | ||
<div></div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default ReserveStatus | ||
export default ReserveStatus; |
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 |
---|---|---|
|
@@ -4,19 +4,19 @@ import 'stylesheet/Footer.scss'; | |
const Footer = () => { | ||
return ( | ||
<div className="footer"> | ||
<div className="footer__title">Contacts</div> | ||
{/* <div className="footer__title">Contacts</div> */} | ||
<div className="footer__menu"> | ||
<div className="footer__menu__item"> | ||
<img src={process.env.PUBLIC_URL + '/img/message.png'} alt="img" /> | ||
<p>[email protected]</p> | ||
{/* <p>[email protected]</p> */} | ||
</div> | ||
<div className="footer__menu__item"> | ||
<img src={process.env.PUBLIC_URL + '/img/call.png'} alt="img" /> | ||
<p>010-9985-8584 (회장 : 조연호)</p> | ||
{/* <p>010-9985-8584 (회장 : 조연호)</p> */} | ||
</div> | ||
<div className="footer__menu__item"> | ||
<img src={process.env.PUBLIC_URL + '/img/insta.png'} alt="img" /> | ||
<p>@knupi_official</p> | ||
{/* <p>@knupi_official</p> */} | ||
</div> | ||
</div> | ||
<div className="footer__copyright"> | ||
|
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,13 @@ | ||
import React from 'react'; | ||
import { useParams } from 'react-router-dom'; | ||
const ReservePage = () => { | ||
const { id } = useParams(); | ||
return ( | ||
<div className="home"> | ||
ReservePage | ||
<div>{id}</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default ReservePage; |
Oops, something went wrong.