UNPKG

react-devise-facebook-encore

Version:

A simple package to interact with Facebook LogIn API

13 lines (10 loc) 286 B
import React from 'react'; import {getConfig} from './config/index'; const withAuth = WrappedComponent => { const Authorized = props => { const config = getConfig(); return <WrappedComponent auth={config} {...props} />; }; return Authorized; }; export default withAuth;