├── .versions ├── README.md ├── lib.jsx └── package.js /.versions: -------------------------------------------------------------------------------- 1 | babel-compiler@5.8.24_1 2 | babel-runtime@0.1.4 3 | base64@1.0.4 4 | blaze@2.1.3 5 | blaze-tools@1.0.4 6 | caching-compiler@1.0.0 7 | caching-html-compiler@1.0.2 8 | check@1.0.6 9 | coffeescript@1.0.10 10 | cosmos:browserify@0.4.0 11 | deps@1.0.9 12 | diff-sequence@1.0.1 13 | ecmascript@0.1.5 14 | ecmascript-collections@0.1.6 15 | ejson@1.0.7 16 | gwendall:blaze-to-react@0.1.0 17 | gwendall:useraccounts-react@0.1.1 18 | html-tools@1.0.5 19 | htmljs@1.0.5 20 | id-map@1.0.4 21 | jquery@1.11.4 22 | jsx@0.2.1 23 | meteor@1.1.9 24 | minifiers@1.1.7 25 | mongo-id@1.0.1 26 | observe-sequence@1.0.7 27 | promise@0.5.0 28 | random@1.0.4 29 | react@0.1.13 30 | react-meteor-data@0.1.9 31 | react-runtime@0.13.3_7 32 | react-runtime-dev@0.13.3_7 33 | react-runtime-prod@0.13.3_6 34 | reactive-var@1.0.6 35 | spacebars@1.0.7 36 | spacebars-compiler@1.0.7 37 | templating@1.1.4 38 | templating-tools@1.0.0 39 | tracker@1.0.9 40 | underscore@1.0.4 41 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ```diff 2 | - NOTE: This package is not maintained anymore. 3 | - If you want to help, please reach out to gwendall.esnault@gmail.com 4 | ``` 5 | 6 | Meteor Useraccounts React 7 | ========================= 8 | 9 | React component for useraccounts. 10 | 11 | Installation 12 | ------------ 13 | 14 | ``` sh 15 | meteor add gwendall:useraccounts-react 16 | ``` 17 | 18 | How it works 19 | ----------- 20 | 21 | 1. Add this package **after** your useraccounts package (useraccounts:unstyled, useraccounts:bootstrap, etc.). 22 | 23 | 2. Drop the `` component. Pass it any parameter you would pass to the good old `{{> atForm}}` Blaze template. 24 | 25 | ```javascript 26 | Page = React.createClass({ 27 | render() { 28 | return 29 | } 30 | }); 31 | ``` 32 | 33 | 3. Enjoy! 34 | -------------------------------------------------------------------------------- /lib.jsx: -------------------------------------------------------------------------------- 1 | AtFormReact = React.createClass({ 2 | render() { 3 | return 4 | } 5 | }); 6 | -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- 1 | Package.describe({ 2 | name: 'gwendall:useraccounts-react', 3 | summary: 'React component for useraccounts', 4 | git: 'https://github.com/gwendall/meteor-useraccounts-react.git', 5 | version: '0.1.1' 6 | }); 7 | 8 | Package.onUse(function(api, where) { 9 | api.versionsFrom('1.2'); 10 | api.use([ 11 | 'react@0.1.13', 12 | 'gwendall:blaze-to-react@0.1.0' 13 | ]); 14 | api.addFiles('lib.jsx'); 15 | api.export('AtFormReact'); 16 | }); 17 | --------------------------------------------------------------------------------