mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 13:50:35 +08:00
18 lines
472 B
JavaScript
18 lines
472 B
JavaScript
import ChangePassword from './containers/ChangePassword';
|
|
import AddEmailAddressDialog from './containers/AddEmailAddressDialog';
|
|
import Profile from './containers/Profile';
|
|
import translations from '../translations.yml';
|
|
import graphql from './graphql';
|
|
import reducer from './reducer';
|
|
|
|
export default {
|
|
reducer,
|
|
translations,
|
|
slots: {
|
|
profileHeader: [Profile],
|
|
profileSettings: [ChangePassword],
|
|
stream: [AddEmailAddressDialog],
|
|
},
|
|
...graphql,
|
|
};
|