baf51f9c32
- CommentsList needs to return a title with comment amounts - mobile player dimensions needed to fill in the cover - hid livestream header for now until figuring out a better presentation - ~colum-reverse~ was causing problems with MUI's drawer scrolling, so reversed the chat order and made it ~column~ by default - Hid bottom expand navigation if component not yet opened - some other style changes in the middle
11 lines
379 B
JavaScript
11 lines
379 B
JavaScript
import { connect } from 'react-redux';
|
|
import LivestreamLayout from './view';
|
|
import { selectTheme } from 'redux/selectors/settings';
|
|
import { selectMobilePlayerDimensions } from 'redux/selectors/app';
|
|
|
|
const select = (state) => ({
|
|
theme: selectTheme(state),
|
|
mobilePlayerDimensions: selectMobilePlayerDimensions(state),
|
|
});
|
|
|
|
export default connect(select)(LivestreamLayout);
|