var ACTION_TYPES = require('../actions').ACTION_TYPES;
I tried to import {ACTION_TYPES.ACTION_TYPES} from ('../actions')
but it doesn't seem to work.
How to switch to ES6 using import?
This should work:
import {ACTION_TYPES} from '../actions'