mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 19:10:22 +01:00
a1db40047c
* Removed unused UI files. Fixes #3434. * Reverted the deletion of "feature-toggle-utils.js". Reverted the deletion of the test files and modified the paths so they referred to the old-ui.
12 lines
276 B
JavaScript
12 lines
276 B
JavaScript
// Reusable Dropdown Components
|
|
// TODO: Refactor into separate components
|
|
const Dropdown = require('./components/dropdown').Dropdown
|
|
|
|
// App-Specific Instances
|
|
const NetworkDropdown = require('./network-dropdown').default
|
|
|
|
module.exports = {
|
|
NetworkDropdown,
|
|
Dropdown,
|
|
}
|