Skip to content

Commit

Permalink
chore: remove tanstack query
Browse files Browse the repository at this point in the history
  • Loading branch information
hee-suh committed Jun 8, 2024
1 parent f89131e commit 5accfd5
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 312 deletions.
1 change: 0 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"next/core-web-vitals",
"airbnb-typescript",
"prettier",
"plugin:@tanstack/eslint-plugin-query/recommended",
"plugin:storybook/recommended"
],
"parserOptions": {
Expand Down
182 changes: 0 additions & 182 deletions package-lock.json

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

3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"build-storybook": "storybook build"
},
"dependencies": {
"@tanstack/react-query": "^5.36.0",
"next": "14.2.3",
"react": "^18",
"react-dom": "^18"
Expand All @@ -31,8 +30,6 @@
"@storybook/react": "^8.1.1",
"@storybook/test": "^8.1.1",
"@svgr/webpack": "^8.1.0",
"@tanstack/eslint-plugin-query": "^5.35.6",
"@tanstack/react-query-next-experimental": "^5.36.0",
"@testing-library/react": "^15.0.7",
"@types/node": "^20",
"@types/react": "^18",
Expand Down
49 changes: 0 additions & 49 deletions src/app/(test)/query-test/Components.tsx

This file was deleted.

12 changes: 0 additions & 12 deletions src/app/(test)/query-test/page.tsx

This file was deleted.

5 changes: 1 addition & 4 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import type { Metadata } from 'next'
import { Inter } from 'next/font/google'

import './globals.css'
import Providers from './provider'

const inter = Inter({ subsets: ['latin'] })

Expand All @@ -20,9 +19,7 @@ export default function RootLayout({
}>) {
return (
<html lang="ko">
<body className={inter.className}>
<Providers>{children}</Providers>
</body>
<body className={inter.className}>{children}</body>
</html>
)
}
61 changes: 0 additions & 61 deletions src/app/provider.tsx

This file was deleted.

0 comments on commit 5accfd5

Please sign in to comment.