import App from 'modules/app/components/app';
import * as VIEWS from 'modules/app/constants/views';
import * as AUTH_TYPES from 'modules/auth/constants/auth-types';
import * as TRANSACTION_TYPES from 'modules/transactions/constants/types';

const constants = {
	VIEWS,
	AUTH_TYPES,
	TRANSACTION_TYPES
};

const components = {
	App,
	constants
};
export default components;

// also adding this notation to allow for importing specific pieces: import { App } from '...';
export {
	App,
	constants
};
