Migrate ShareSheet from js to ts

Summary: Migrated ShareSheet.js to ShareSheet.tsx

Reviewed By: jknoxville

Differential Revision: D16734361

fbshipit-source-id: a6c050be19892f1650c1652536a62e4324ad949a
This commit is contained in:
Benjamin Elo
2019-08-12 05:49:44 -07:00
committed by Facebook Github Bot
parent d9cb55c8ae
commit 3e11e8887d
3 changed files with 33 additions and 22 deletions

View File

@@ -267,3 +267,12 @@ export const setFlipperRating = (rating: number): Action => ({
rating,
},
});
export const unsetShare = (): Action => ({
type: UNSET_SHARE,
});
export const setExportStatusComponent = (payload: JSX.Element): Action => ({
type: SET_EXPORT_STATUS_MESSAGE,
payload,
});