/** * menu/index.js * Barrel file for the menu module components. */ const toggles = require('./toggles'); const dataFetching = require('./dataFetching'); const urlUtils = require('./urlUtils'); const dropdownPopulation = require('./dropdownPopulation'); const htmlGeneration = require('./htmlGeneration'); module.exports = { toggles, dataFetching, urlUtils, dropdownPopulation, htmlGeneration, };