diff --git a/src/app/courses/new/components/NewPlaceReview.tsx b/src/app/courses/new/components/NewPlaceReview.tsx new file mode 100644 index 0000000..ed549d1 --- /dev/null +++ b/src/app/courses/new/components/NewPlaceReview.tsx @@ -0,0 +1,3 @@ +export default function NewPlaceReview() { + return null +} diff --git a/src/app/courses/new/components/SearchPlace.tsx b/src/app/courses/new/components/SearchPlace.tsx new file mode 100644 index 0000000..fc73bcc --- /dev/null +++ b/src/app/courses/new/components/SearchPlace.tsx @@ -0,0 +1,43 @@ +import { useState } from 'react' +import { Input, Space } from 'antd' + +export default function SearchPlace() { + const [results, setResults] = useState([ + { id: 10, name: '김밥천국' }, + { id: 11, name: '신김밥천국' }, + { id: 12, name: '김밥의 민족' }, + { id: 13, name: '김밥천국 압구정점' }, + { id: 14, name: '김밥천국 삼성점' }, + { id: 15, name: '김밥천국 수서점' }, + { id: 16, name: '김밥의 민족' }, + { id: 17, name: '푸트카페김밥천국 역삼역점' }, + { id: 18, name: '푸트카페김밥천국 신사점' }, + { id: 19, name: '김밥천국 포이점' }, + { id: 20, name: '김밥천국 개포점' }, + ]) + + return ( +