mirror of
https://github.com/ascribe/onion.git
synced 2024-12-23 09:50:31 +01:00
15 lines
235 B
JavaScript
15 lines
235 B
JavaScript
|
'use strict';
|
||
|
|
||
|
import { altThirdParty } from '../alt';
|
||
|
|
||
|
|
||
|
class FacebookActions {
|
||
|
constructor() {
|
||
|
this.generateActions(
|
||
|
'sdkReady'
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default altThirdParty.createActions(FacebookActions);
|