33672a789b
make player full screen and prepared for overlay actions small changes cleanup
10 lines
185 B
JavaScript
10 lines
185 B
JavaScript
import { connect } from 'react-redux';
|
|
import { doToast } from 'lbry-redux';
|
|
import EmbedTextArea from './view';
|
|
|
|
export default connect(
|
|
null,
|
|
{
|
|
doToast,
|
|
}
|
|
)(EmbedTextArea);
|