From 19033b8460cb43dc2fa34a2cffa932b5efe111ca Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Sat, 19 Aug 2017 15:39:58 +0200 Subject: Add profile page --- src/actions/profile.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/actions/profile.js (limited to 'src/actions/profile.js') diff --git a/src/actions/profile.js b/src/actions/profile.js new file mode 100644 index 00000000..421e7602 --- /dev/null +++ b/src/actions/profile.js @@ -0,0 +1,14 @@ +export const OPEN_DELETE_PROFILE_MODAL = "OPEN_DELETE_PROFILE_MODAL"; +export const CLOSE_DELETE_PROFILE_MODAL = "CLOSE_DELETE_PROFILE_MODAL"; + +export function openDeleteProfileModal() { + return { + type: OPEN_DELETE_PROFILE_MODAL + }; +} + +export function closeDeleteProfileModal() { + return { + type: CLOSE_DELETE_PROFILE_MODAL + }; +} -- cgit v1.2.3