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.
31 lines
776 B
31 lines
776 B
import { PureComponent } from 'react';
|
|
|
|
import { Provider } from 'react-redux';
|
|
|
|
import { fetchCustomEmojis } from 'flavours/glitch/actions/custom_emojis';
|
|
import { hydrateStore } from 'flavours/glitch/actions/store';
|
|
import Compose from 'flavours/glitch/features/standalone/compose';
|
|
import initialState from 'flavours/glitch/initial_state';
|
|
import { IntlProvider } from 'flavours/glitch/locales';
|
|
import { store } from 'flavours/glitch/store';
|
|
|
|
if (initialState) {
|
|
store.dispatch(hydrateStore(initialState));
|
|
}
|
|
|
|
store.dispatch(fetchCustomEmojis());
|
|
|
|
export default class ComposeContainer extends PureComponent {
|
|
|
|
render () {
|
|
return (
|
|
<IntlProvider>
|
|
<Provider store={store}>
|
|
<Compose />
|
|
</Provider>
|
|
</IntlProvider>
|
|
);
|
|
}
|
|
|
|
}
|