user reducer

Reviewed By: jknoxville

Differential Revision: D14224403

fbshipit-source-id: 8341dd8af03148c4b1f648641bda522804acb22d
This commit is contained in:
Daniel Büchele
2019-02-28 07:25:07 -08:00
committed by Facebook Github Bot
parent ffa586dd49
commit ff0de8caaa
6 changed files with 133 additions and 0 deletions

18
src/fb-stubs/user.js Normal file
View File

@@ -0,0 +1,18 @@
/**
* Copyright 2018-present Facebook.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
* @format
*/
export function getUser() {
return Promise.reject();
}
export async function graphQLQuery(query: string) {
return Promise.reject();
}
export function logoutUser(): Promise<void> {
return Promise.reject();
}