# Strings
# =======
# String constants that couple server and client components 
Strings = {
  # body tag attribute used to communicate the page's name between
  # the server and the client
  PAGE_KEY_ATTR_NAME : 'data-page-key'

  IS_LOADING : 'is_loading'

  # used for passing down the initial data from server to client
  ID_MAP    : 'id_map'
  PAGE_DATA : 'page_data'
}

module.exports = Strings


