Skip to content

Commit 637a72b

Browse files
authored
Merge pull request #2 from pythonkr/feature/layout
feat: 메인 레이아웃 설정
2 parents 06032c2 + a883847 commit 637a72b

File tree

28 files changed

+1054
-36
lines changed

28 files changed

+1054
-36
lines changed

emotion.d.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import "@emotion/react";
2+
import { Theme as MuiTheme } from "@mui/material/styles";
3+
4+
declare module "@mui/material/styles" {
5+
interface PaletteColor {
6+
nonFocus?: string;
7+
}
8+
interface SimplePaletteColorOptions {
9+
nonFocus?: string;
10+
}
11+
}
12+
13+
declare module "@emotion/react" {
14+
export interface Theme extends MuiTheme {}
15+
}

package.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,13 @@
3131
"notistack": "^3.0.2",
3232
"react": "^19.0.0",
3333
"react-dom": "^19.0.0",
34-
"remeda": "^2.21.3"
34+
"react-router-dom": "^7.5.3"
3535
},
36+
3637
"devDependencies": {
3738
"@eslint/js": "^9.21.0",
39+
"@types/node": "^22.15.3",
3840
"@tanstack/react-query-devtools": "^5.74.4",
39-
"@types/node": "^22.14.1",
4041
"@types/react": "^19.0.10",
4142
"@types/react-dom": "^19.0.4",
4243
"@typescript-eslint/parser": "^8.29.1",
@@ -51,10 +52,13 @@
5152
"globals": "^15.15.0",
5253
"iamport-typings": "^1.4.0",
5354
"prettier": "^3.5.3",
55+
"remeda": "^2.21.3",
5456
"typescript": "~5.7.2",
5557
"typescript-eslint": "^8.24.1",
5658
"vite": "^6.2.0",
57-
"vite-plugin-mdx": "^3.6.1"
59+
"vite-plugin-mdx": "^3.6.1",
60+
"vite-plugin-svgr": "^4.3.0"
61+
5862
},
5963
"packageManager": "[email protected]+sha512.2d92c86b7928dc8284f53494fb4201f983da65f0fb4f0d40baafa5cf628fa31dae3e5968f12466f17df7e97310e30f343a648baea1b9b350685dafafffdf5808"
6064
}

0 commit comments

Comments
 (0)