9 lines
243 B
TypeScript
9 lines
243 B
TypeScript
|
|
import { type PropsWithChildren } from "react";
|
||
|
|
import { QueryProvider } from "./QueryProvider";
|
||
|
|
|
||
|
|
const AppProviders = ({ children }: PropsWithChildren) => {
|
||
|
|
return <QueryProvider>{children}</QueryProvider>;
|
||
|
|
};
|
||
|
|
|
||
|
|
export default AppProviders;
|