mirror of
https://github.com/wassname/talk.git
synced 2026-07-11 05:00:09 +08:00
14 lines
380 B
JavaScript
14 lines
380 B
JavaScript
import ChangePassword from './containers/ChangePassword';
|
|
import AddEmailAddressDialog from './containers/AddEmailAddressDialog';
|
|
import Profile from './containers/Profile';
|
|
import translations from './translations.yml';
|
|
|
|
export default {
|
|
translations,
|
|
slots: {
|
|
profileHeader: [Profile],
|
|
profileSettings: [ChangePassword],
|
|
stream: [AddEmailAddressDialog],
|
|
},
|
|
};
|