Skip to content

Commit

Permalink
Merge pull request #2 from pick-time/feature/create-dir
Browse files Browse the repository at this point in the history
feat: api 폴더 추가
  • Loading branch information
yooveloper authored Jun 24, 2023
2 parents 3bf36db + b64b943 commit fde755f
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/api/api.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// apis
9 changes: 9 additions & 0 deletions src/components/common/Button.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from "react";

export default function Button() {
return (
<>
<button type="button">Button</button>;
</>
);
}
5 changes: 5 additions & 0 deletions src/components/common/Intro.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import React from "react";

export default function Intro() {
return <h1>Intro</h1>;
}
5 changes: 5 additions & 0 deletions src/components/consumer/ConsumerGiftLst.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import React from "react";

export default function ConsumerGiftLst() {
return <h1>ConsumerGiftLst</h1>;
}
5 changes: 5 additions & 0 deletions src/components/provider/ProviderGift.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import React from "react";

export default function ProviderGift() {
return <h1>ProviderGift</h1>;
}
5 changes: 5 additions & 0 deletions src/components/provider/ProviderGiftList.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import React from "react";

export default function ProviderGiftList() {
return <h1>ProviderGiftList</h1>;
}

0 comments on commit fde755f

Please sign in to comment.