-- Compiled with roblox-ts v1.3.2 local TS = _G[script] local RoactRoduxContext = TS.import(script, script.Parent.Parent, "components", "context").RoactRoduxContext --[[ * * A hook to access the Rodux Store. * * @returns The Rodux store ]] local function useStore(hooks) return hooks.useContext(RoactRoduxContext).store end local default = useStore return { useStore = useStore, default = default, }