Fix reblogs of reblogs in UI, add follow form in UI
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
import ColumnsArea from './columns_area';
|
||||
import ComposerDrawerContainer from '../containers/composer_drawer_container';
|
||||
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
||||
import ColumnsArea from './columns_area';
|
||||
import Drawer from './drawer';
|
||||
import ComposeFormContainer from '../containers/compose_form_container';
|
||||
import FollowFormContainer from '../containers/follow_form_container';
|
||||
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
||||
|
||||
const Frontend = React.createClass({
|
||||
|
||||
@@ -9,7 +11,14 @@ const Frontend = React.createClass({
|
||||
render () {
|
||||
return (
|
||||
<div style={{ flex: '0 0 auto', display: 'flex', width: '100%', height: '100%', background: '#1a1c23' }}>
|
||||
<ComposerDrawerContainer />
|
||||
<Drawer>
|
||||
<div style={{ flex: '1 1 auto' }}>
|
||||
<ComposeFormContainer />
|
||||
</div>
|
||||
|
||||
<FollowFormContainer />
|
||||
</Drawer>
|
||||
|
||||
<ColumnsArea />
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user