闭社主体 forked from https://github.com/tootsuite/mastodon
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
521 B

  1. import React from 'react';
  2. import ComposeFormContainer from '../../compose/containers/compose_form_container';
  3. import NotificationsContainer from '../../ui/containers/notifications_container';
  4. import LoadingBarContainer from '../../ui/containers/loading_bar_container';
  5. export default class Compose extends React.PureComponent {
  6. render () {
  7. return (
  8. <div>
  9. <ComposeFormContainer />
  10. <NotificationsContainer />
  11. <LoadingBarContainer className='loading-bar' />
  12. </div>
  13. );
  14. }
  15. }