Skip to content

Commit

Permalink
Feat: draft를 컴포넌트 분리
Browse files Browse the repository at this point in the history
  • Loading branch information
BonhaengLee committed Dec 10, 2022
1 parent 4acb838 commit 056d1d3
Show file tree
Hide file tree
Showing 47 changed files with 1,877 additions and 181 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,8 @@ module.exports = {
devDependencies: ["**/*.stories.tsx"],
},
],
// enum issue
"no-shadow": "off",
"@typescript-eslint/no-shadow": ["error"],
},
};
114 changes: 91 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"@emotion/react": "^11",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11",
"clsx": "^1.2.1",
"framer-motion": "^6",
"graphql": "^16.6.0",
"js-cookie": "^3.0.1",
Expand All @@ -29,6 +30,7 @@
"react-icons": "^4.7.1",
"react-toastify": "^9.1.1",
"react-waypoint": "^10.3.0",
"sass": "^1.56.2",
"twin.macro": "^2.8.2"
},
"devDependencies": {
Expand Down
3 changes: 3 additions & 0 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ import { ChakraProvider, theme } from "@chakra-ui/react";

import { useApollo } from "../src/lib/apolloClient";

import "../styles/globals.css";
import "../styles/reset.css";

export type NextPageWithLayout<P = unknown, IP = P> = NextPage<P, IP> & {
getLayout?: (page: ReactElement) => ReactNode;
};
Expand Down
Loading

0 comments on commit 056d1d3

Please sign in to comment.