Skip to content

Commit

Permalink
refactor: 컴포넌트 파일 위치 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
hyuke81 committed Jan 19, 2025
1 parent e7bc4c5 commit ae30e51
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 4 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import React from 'react';
import styles from './sellerInfo.module.scss';

const SellerInfo: React.FC = () => {
const SellerInfo = () => {
return (
<div className={styles.sellerInfo}>
<div className={styles.title}>판매자 정보</div>
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/pages/idea-market/IdeaMarketPayment.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from 'react';
import PaymentTitle from '../../components/payment/PaymentTitle';
import SellerInfo from '../../components/info/SellerInfo';
import SellerInfo from '../../components/payment/SellerInfo';
import PaymentMethods from '../../components/payment/PaymentMethods';
import PaymentSummary from '../../components/payment/PaymentSummary';
import PaymentButton from '../../components/common/button/PaymentButton';
import PaymentButton from '../../components/payment/PaymentButton';
import styles from './ideaMarketPayment.module.scss';

const IdeaMarketPayment: React.FC = () => {
Expand Down

0 comments on commit ae30e51

Please sign in to comment.