Skip to content

Commit

Permalink
[Team-33][bangtae & 포키] 1주차 금요일 PR (#94)
Browse files Browse the repository at this point in the history
* Feature/3 (#26)

* rename: gnb 폴더 생성하여 관련 컴포넌트 이동
   - styled -> customStyled 로 변경 적용
* refactor: gnb 컴포넌트 css 수정
* feat: main banner UI 구현
* refactor: gnb 컴포넌트 hover 및 cursor pointer 적용

* Feature/2 (#27)

* chore: mui 버전 통일

* feat: 글로벌 스타일 추가

* feat: SearchBar 컴포넌트 style 작성 및 이벤트 추가

* Feature/alias (#28)

* chore: alias 경로 설정을 위한 react-app-rewired 설치 및 설정파일 생성
* refactor: 절대경로 반영 (index, app, gnb, main-banner)
* fix: search input width 고정

Co-authored-by: moon-yerim <75062526+moonyerim2@users.noreply.github.com>
  • Loading branch information
bangdler and moonyerim2 committed May 29, 2022
1 parent 23b9e33 commit fd418d3
Show file tree
Hide file tree
Showing 19 changed files with 431 additions and 506 deletions.
5 changes: 5 additions & 0 deletions airbnb-app/config-overrides.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const { alias, configPaths } = require('react-app-rewire-alias');

const aliasMap = configPaths('./jsconfig.paths.json');

module.exports = alias(aliasMap);
8 changes: 8 additions & 0 deletions airbnb-app/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"extends": "./jsconfig.paths.json",
"compilerOptions": {
},
"include": [
"src"
]
}
9 changes: 9 additions & 0 deletions airbnb-app/jsconfig.paths.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@component/*": ["src/component/*"]
}
}
}

0 comments on commit fd418d3

Please sign in to comment.