14 lines
348 B
TypeScript
14 lines
348 B
TypeScript
import { QueryClientProvider } from "@tanstack/react-query";
|
|
import { useAppProviders } from "./providers";
|
|
import { AppShell } from "../components/layout/AppShell";
|
|
|
|
export function App() {
|
|
const { queryClient } = useAppProviders();
|
|
|
|
return (
|
|
<QueryClientProvider client={queryClient}>
|
|
<AppShell />
|
|
</QueryClientProvider>
|
|
);
|
|
}
|