2019-10-29 17:23:56 +01:00
|
|
|
import { connect } from 'react-redux';
|
2020-06-12 22:44:25 +02:00
|
|
|
import { doToast } from 'redux/actions/notifications';
|
2019-12-30 20:54:53 +01:00
|
|
|
import EmbedTextArea from './view';
|
2019-10-29 17:23:56 +01:00
|
|
|
|
2020-06-12 22:44:25 +02:00
|
|
|
export default connect(null, {
|
|
|
|
doToast,
|
|
|
|
})(EmbedTextArea);
|