2019-10-29 12:23:56 -04:00
|
|
|
import { connect } from 'react-redux';
|
2020-06-12 16:44:25 -04:00
|
|
|
import { doToast } from 'redux/actions/notifications';
|
2019-12-30 14:54:53 -05:00
|
|
|
import EmbedTextArea from './view';
|
2019-10-29 12:23:56 -04:00
|
|
|
|
2020-06-12 16:44:25 -04:00
|
|
|
export default connect(null, {
|
|
|
|
doToast,
|
|
|
|
})(EmbedTextArea);
|