blob: b55c56a73b2dc81aeb90aebfc051bca2d694185b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import type { ReactNode } from "react";
import { useAuthInit } from "../atoms";
interface StoreInitializerProps {
children: ReactNode;
}
export function StoreInitializer({ children }: StoreInitializerProps) {
useAuthInit();
return <>{children}</>;
}
|