react-zeplin-login

0.1.0 • Public • Published

react-zeplin-login

npm npm bundle size npm

React component for a simple OAuth login with Zeplin.

DEMO HERE

button examples

🚀 Get Started

Follow these steps to start using React Zeplin Login:

  1. Installation

    # with npm 
    npm i react-zeplin-login
     
    # with yarn 
    yarn add react-zeplin-login
  2. Import and configure component.

    import React from "react";
    import ZeplinLogin from "react-zeplin-login";
     
    export default props => {
      const authHandler = (err, data) => {
        console.log(err, data);
      };
     
      return (
        <ZeplinLogin
          authCallback={authHandler}
          clientId={CLIENT_ID}
          clientSecret={CLIENT_SECRET}
          redirectUri={REDIRECT_URI}
        />
      );
    };
  3. Find more info about keys and OAuth apps in Zeplin official docs

📖 API

Property Type Default Description
authCallback function required Callback function which takes two arguments (error, authData)
clientId string required Client ID of your OAuth App
clientSecret string required Client Secret of your OAuth App
redirectUri string required Authorization callback URL of your OAuth App
buttonTheme enum("classic", "light", "light_short", "dark", "dark_short") "classic" Button style theme. Just "classic" is approved by Zeplin team, and de-facto is only one official option
className string "" Custom class name

📝 License

MIT

Dependencies (0)

    Dev Dependencies (27)

    Package Sidebar

    Install

    npm i react-zeplin-login

    Weekly Downloads

    1

    Version

    0.1.0

    License

    MIT

    Unpacked Size

    39.7 kB

    Total Files

    15

    Last publish

    Collaborators

    • alexandrtovmach