diff options
author | kibigo! <marrus-sh@users.noreply.github.com> | 2017-11-17 19:16:35 -0800 |
---|---|---|
committer | kibigo! <marrus-sh@users.noreply.github.com> | 2017-11-17 19:29:16 -0800 |
commit | e19fc6a9f81e3756e0198006d2eafbc2f3acadb5 (patch) | |
tree | 4e91fa8891da88ce1ea25a2b7edcffbe62a7a4d1 /app/javascript/mastodon/features/standalone/compose/index.js | |
parent | 45c44989c8fb6e24badd18bb83ac5f68de0aceaf (diff) |
Restore vanilla components
Diffstat (limited to 'app/javascript/mastodon/features/standalone/compose/index.js')
-rw-r--r-- | app/javascript/mastodon/features/standalone/compose/index.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/javascript/mastodon/features/standalone/compose/index.js b/app/javascript/mastodon/features/standalone/compose/index.js new file mode 100644 index 000000000..0d764575f --- /dev/null +++ b/app/javascript/mastodon/features/standalone/compose/index.js @@ -0,0 +1,20 @@ +import React from 'react'; +import ComposeFormContainer from '../../compose/containers/compose_form_container'; +import NotificationsContainer from '../../ui/containers/notifications_container'; +import LoadingBarContainer from '../../ui/containers/loading_bar_container'; +import ModalContainer from '../../ui/containers/modal_container'; + +export default class Compose extends React.PureComponent { + + render () { + return ( + <div> + <ComposeFormContainer /> + <NotificationsContainer /> + <ModalContainer /> + <LoadingBarContainer className='loading-bar' /> + </div> + ); + } + +} |