user3848987
user3848987

Reputation: 1657

new ReactiveDict() in meteor 1.2

I did an update to meteor 1.2. Also I changed the package to use 'react'. But in the code I used

var anything = new ReactiveDict();
var something = new ReactiveVar();

How do I have to change that to use my code in the new meteor?

Upvotes: 3

Views: 94

Answers (1)

JeremyK
JeremyK

Reputation: 3240

You need to add the package first:

meteor add reactive-dict

Upvotes: 1

Related Questions