@replyke/core
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
14 lines (13 loc) • 426 B
TypeScript
import React from "react";
import type { ReactNode } from "react";
export interface ReplykeStoreProviderProps {
children: ReactNode;
projectId: string;
signedToken?: string | null;
}
/**
* Redux store provider for Replyke
* This component provides the Redux store and initializes auth state
*/
export declare const ReplykeStoreProvider: React.FC<ReplykeStoreProviderProps>;
export default ReplykeStoreProvider;