We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcfd885 commit cb5ade5Copy full SHA for cb5ade5
src/pages/_app.tsx
@@ -3,7 +3,6 @@ import '@/shared/icons';
3
import { useState } from 'react';
4
import type { AppProps } from 'next/app';
5
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
6
-import { BottomNav } from '@/shared/components/tab/BottomNav';
7
8
export default function App({ Component, pageProps }: AppProps) {
9
const [queryClient] = useState(
src/shared/components/tab/BottomNav.tsx
@@ -1,6 +1,6 @@
1
import Link from 'next/link';
2
import { useRouter } from 'next/router';
-import { TabItem } from './TabItem';
+import { TabItem } from '@/shared/components/tab/TabItem';
import type { IconName } from '@/shared/icons/iconNames';
interface NavItem {
0 commit comments