about summary refs log tree commit diff
path: root/app/javascript/themes/glitch/features/standalone/compose/index.js
blob: 8a8118178b28f344f6007cc8569e1a491f325483 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import React from 'react';
import ComposeFormContainer from 'themes/glitch/features/compose/containers/compose_form_container';
import NotificationsContainer from 'themes/glitch/features/ui/containers/notifications_container';
import LoadingBarContainer from 'themes/glitch/features/ui/containers/loading_bar_container';
import ModalContainer from 'themes/glitch/features/ui/containers/modal_container';

export default class Compose extends React.PureComponent {

  render () {
    return (
      <div>
        <ComposeFormContainer />
        <NotificationsContainer />
        <ModalContainer />
        <LoadingBarContainer className='loading-bar' />
      </div>
    );
  }

}