meteor-accountsui-semanticui-react
v0.0.3
Published
Accounts UI Package for Semantic UI and React
Readme
Meteor accounts package for Semantic UI.
Installation
Install package via
npm install meteor-accountsui-semanticui-reactRegister the module in your
client/main.jsfile via:import { Module as accountsModule } from "meteor-accountsui-semanticui-react"; ... app.loadModule(accountsModule);Register the server methods in your
server/methods/index.jsfileimport { Methods as accountsMethods } from "meteor-accountsui-semanticui-react"; export default function () { ... accountsMethods(); }You can view the login control via:
import { AccountsView, UserView } from "meteor-accountsui-semanticui-react"; ... const HomeView = () => ( <AccountsView /> <UserView /> )
Warning
Work in progress !!!
