https://github.com/tomitrescak/meteor-accountsui-semanticui-react
Meteor Accounts UI with React and Semantic UI
https://github.com/tomitrescak/meteor-accountsui-semanticui-react
Last synced: 5 months ago
JSON representation
Meteor Accounts UI with React and Semantic UI
- Host: GitHub
- URL: https://github.com/tomitrescak/meteor-accountsui-semanticui-react
- Owner: tomitrescak
- Created: 2016-03-11T03:44:35.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-22T06:30:06.000Z (about 9 years ago)
- Last Synced: 2025-01-03T18:43:23.118Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 83 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Meteor accounts package for Semantic UI.
# Installation
1. Install package via `npm install meteor-accountsui-semanticui-react`
2. Register the module in your `client/main.js` file via:```javascript
import { Module as accountsModule } from "meteor-accountsui-semanticui-react";
...
app.loadModule(accountsModule);
```3. Register the server methods in your `server/methods/index.js` file
```javascript
import { Methods as accountsMethods } from "meteor-accountsui-semanticui-react";export default function () {
...
accountsMethods();
}
```
4. You can view the login control via:
```javascript
import { AccountsView, UserView } from "meteor-accountsui-semanticui-react";
...
const HomeView = () => (
)
```# Warning
Work in progress !!!