mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 17:33:14 +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);
|