mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 03:38:13 +08:00
15 lines
475 B
JavaScript
15 lines
475 B
JavaScript
import DownloadCommentHistory from './containers/DownloadCommentHistory';
|
|
import DeleteMyAccount from './containers/DeleteMyAccount';
|
|
import AccountDeletionRequestedSign from './containers/AccountDeletionRequestedSign';
|
|
import translations from './translations.yml';
|
|
import graphql from './graphql';
|
|
|
|
export default {
|
|
slots: {
|
|
stream: [AccountDeletionRequestedSign],
|
|
profileSettings: [DownloadCommentHistory, DeleteMyAccount],
|
|
},
|
|
translations,
|
|
...graphql,
|
|
};
|