Closes #73 * Add the API post request deleteMe * Add a trigger button * Add an utils/email module with the template and window opener * Add a dropdown component * Add a button component * Hide the user-id text and a logout bout in the dropdown * Add a noop empty function to pass a default handler callback to components
11 lines
352 B
JavaScript
11 lines
352 B
JavaScript
export { default } from './dropdown';
|
|
export { default as DropdownItem } from './__item/dropdown__item';
|
|
|
|
require('./dropdown.scss');
|
|
require('./_active/dropdown_active.scss');
|
|
|
|
require('./__item/dropdown__item.scss');
|
|
require('./__items/dropdown__items.scss');
|
|
require('./__title/dropdown__title.scss');
|
|
require('./__content/dropdown__content.scss');
|