From 34125ba3fe029217cd9cf4b2eec6beada1279526 Mon Sep 17 00:00:00 2001 From: Paul Meskers Date: Wed, 2 Aug 2017 17:01:24 -0400 Subject: [PATCH] Include POP action type as a public action type --- src/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index c2926faf..ca90ef0a 100644 --- a/src/index.js +++ b/src/index.js @@ -6,6 +6,7 @@ import { GO, GO_BACK, GO_FORWARD, + POP, REPLACE_ROUTES, DID_REPLACE_ROUTES } from './types'; @@ -51,8 +52,9 @@ export { PUSH, REPLACE, GO, - GO_FORWARD, GO_BACK, + GO_FORWARD, + POP, REPLACE_ROUTES, DID_REPLACE_ROUTES };