Remove old code

This commit is contained in:
Chi Vinh Le
2018-02-13 15:00:53 +01:00
parent d857585c7f
commit c54a8bdc4f
17 changed files with 341 additions and 856 deletions
+1
View File
@@ -10,6 +10,7 @@ export {
withSignIn,
withSignUp,
withResendEmailConfirmation,
withSetUsername,
} from 'coral-framework/hocs';
export {
withIgnoreUser,
+6
View File
@@ -0,0 +1,6 @@
import get from 'lodash/get';
export const usernameStatusSelector = state =>
get(state, 'auth.user.status.username.status');
export const usernameSelector = state => get(state, 'auth.user.username');