kriasoft / graphql-starter-kit

💥 Monorepo template (seed project) pre-configured with GraphQL API, PostgreSQL, React, and Joy UI.
https://graphqlstart.com
MIT License
3.88k stars 553 forks source link

Add login via Facebook; login dialog #296

Closed koistya closed 3 years ago

koistya commented 3 years ago

How to open a login (modal) dialog?

import * as React from "react";
import { useLoginDialog } from "../hooks";

export function Example(): JSX.Element {
  const loginDialog = useLoginDialog();

  return (
    <div>
      <button onClick={loginDialog.show}>Log In</button>
    </div>
  );
}

No Redux required! 👍🏻