mirror of
https://github.com/wassname/talk.git
synced 2026-06-30 00:50:07 +08:00
24 lines
725 B
JavaScript
24 lines
725 B
JavaScript
import UserBox from './stream/containers/UserBox';
|
|
import SignInButton from './stream/containers/SignInButton';
|
|
import SetUsernameDialog from './stream/containers/SetUsernameDialog';
|
|
import translations from './translations.yml';
|
|
import Login from './login/containers/Main';
|
|
import reducer from './login/reducer';
|
|
import DeleteMyAccount from './profile-settings/containers/DeleteMyAccount';
|
|
import AccountDeletionRequestedSign from './stream/containers/AccountDeletionRequestedSign';
|
|
|
|
export default {
|
|
reducer,
|
|
translations,
|
|
slots: {
|
|
stream: [
|
|
AccountDeletionRequestedSign,
|
|
UserBox,
|
|
SignInButton,
|
|
SetUsernameDialog,
|
|
],
|
|
login: [Login],
|
|
profileSettings: [DeleteMyAccount],
|
|
},
|
|
};
|