An Account Kit Component for React ReactJS component for Facebook's Account kit
An Account Kit Component for React
npm install react-facebook-account-kit
import React from 'react';
import ReactDOM from 'react-dom';
import AccountKit from 'react-facebook-account-kit';
ReactDOM.render(
<AccountKit
appId="your-facebook-appId" // Update this!
version="v1.0" // Version must be in form v{major}.{minor}
onResponse={(resp) => console.log(resp)}
csrf={'csrf token here!'} // Required for security
countryCode={'default country code'} // eg. +60
phoneNumber={'default phone number'} // eg. 12345678
emailAddress={'default email address'} // eg. [email protected]
>
{p => <button {...p}>Initialize Account Kit</button>}
</AccountKit>,
document.getElementById('app')
);
csrf
CSRF token as a string (Required by account kit sdk)appId
Facebook's app id (string)version
Account kit SDK version (string),children
Function that will return a valid react component or null,onResponse
Function that will handle the response for possible responses check Account Kit DocumentationloginType
default is PHONE
debug
default is false
disabled
default is false
display
can be popup
or modal
. default value is popup
language
default is en_US
countryCode
default country code. default value is undefined
phoneNumber
default phone number. default value is undefined
emailAddress
default email address. default value is undefined
. loginType
must be set to "EMAIL"
for this to work.redirect
redirect URL after email confirmation. default value is undefined
. loginType
must be set to "EMAIL"
for this to work.Reference: https://developers.facebook.com/docs/accountkit/webjs/reference
npm run start
Default dev server runs at localost:8080 in browser. You can set IP and PORT in webpack.config.dev.js
npm run bundle
Author: zsajjad
Source Code: https://github.com/zsajjad/react-facebook-account-kit
Article covers: How native is react native?, React Native vs (Ionic, Cordova), Similarities and difference between React Native and Native App Development.
Increase Performance of React Applications Via Array JavaScript Methods. We will create a simple event management application in the react to add, update, and delete an event.
I have been using React JS in my projects for quite some time now and am used to managing routing in my app using the react-router package. I have always been keen on having as little dependencies in my apps as possible, so, I always felt perturbed by the use of this particular package in simpler apps which did not have complex routes.
In this post, I will share my own point of view about React Hooks, and as the title of this post implies, I am not a big fan.
This article will walk you through the concepts you would need to know to step into the world of widely used ReactJS.