kadirahq / mantra

Mantra - An Application Architecture for Meteor
https://kadirahq.github.io/mantra/
978 stars 52 forks source link

Newbie Question: Syntax for Loading Accounts-ui with Mantra? #166

Closed VikR0001 closed 8 years ago

VikR0001 commented 8 years ago

I've installed useraccounts:unstyled from http://useraccounts.meteor.com/, using meteor add useraccounts:unstyled.

How do I access useraccounts pages from a Mantra component?

Thanks very much in advance to all for any info.

VikR1000 commented 8 years ago

Let me ask about this a bit differently. I would like to learn how to do this. I tried googling "use npm packages with meteor mantra" but there are few results. What terms do I need to google to find links that instruct me how to add a package like accounts-ui to Meteor and access it via the correct React syntax?

olts-develop commented 8 years ago

have a look here http://kenrogers.co/meteor-react/

Morganjackson commented 8 years ago

@VikR0001 I think useraccounts uses blaze so you might want to have a look over http://guide.meteor.com/react.html#using-with-blaze to see how it might work with react.

Otherwise, you should check out a new react-accounts package:

https://github.com/studiointeract/react-accounts-ui https://github.com/studiointeract/react-accounts-ui-basic

VikR0001 commented 8 years ago

Thanks very much for this great info.