Skip to content

Commit

Permalink
chore: 빌드 에러 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
urjimyu committed Jan 10, 2024
1 parent ca58f04 commit 09b45e1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/assets/svg/IcEmptyBox.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import * as React from 'react';
import type { SVGProps } from 'react';
const SvgIcEmptyBox = (props: SVGProps<SVGSVGElement>) => (
<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 164 160' {...props}>
Expand Down
4 changes: 2 additions & 2 deletions src/components/common/Router.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { createBrowserRouter } from 'react-router-dom';
import Main from '../../pages/Main';
import Mypage from '../../pages/Mypage';
import DashBoard from './DashBoard';
import AddGift from '../../pages/AddGift';
import Layout from '../../layouts/Layout';

const router = createBrowserRouter([
{
path: '/',
element: <DashBoard />,
element: <Layout />,
children: [
{
path: '/',
Expand Down
2 changes: 1 addition & 1 deletion src/pages/AddGift.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { styled } from 'styled-components';

export default function AddGift() {
const [url, setUrl] = useState('');
const [title, setTitle] = useState('가방');
const title = '가방';
const [price, setPrice] = useState('30000');
const imageUrl = '';

Expand Down
1 change: 0 additions & 1 deletion src/pages/GiftHomeDetail/GiftHomeDetail2030.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ function GiftHomeDetail() {
const price = 42000;
const name = '왕호은';
const time = '00:00:00';
const isItem = false;

return (
<S.GiftHomeDetailPageWrapper>
Expand Down

0 comments on commit 09b45e1

Please sign in to comment.