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.
27 lines
509 B
27 lines
509 B
import React, { useEffect } from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { Coming } from '$components'
|
|
import VideoScreen from '../components/videoScreen'
|
|
|
|
|
|
import '../style.less'
|
|
|
|
const JournalingCenter = (props) => {
|
|
|
|
return (
|
|
// <Coming />
|
|
<>
|
|
<VideoScreen />
|
|
</>
|
|
|
|
)
|
|
}
|
|
|
|
function mapStateToProps (state) {
|
|
const { auth } = state;
|
|
return {
|
|
user: auth.user,
|
|
};
|
|
}
|
|
|
|
export default connect(mapStateToProps)(JournalingCenter);
|
|
|