Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"presets": ["env", "stage-0", "react"],
"plugins": [
"react-hot-loader/babel",
"transform-class-properties",
"transform-decorators-legacy",
"transform-decorators-legacy",
"transform-class-properties",
"react-hot-loader/babel",
]
}

Empty file added New Text Document.txt
Empty file.
13 changes: 6 additions & 7 deletions src/app/components/ConferenceRoom.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,6 @@ let strings = new LocalizedStrings({
}
});

@connect((state) => {
return {
conferenceStore: state.voxeet.conference,
participantsStore: state.voxeet.participants
}
})
class ConferenceRoom extends Component {

constructor(props) {
Expand Down Expand Up @@ -281,4 +275,9 @@ ConferenceRoom.defaultProps = {
attendeesWaiting: AttendeesWaiting
}

export default ConferenceRoom
export default connect((state) => {
return {
conferenceStore: state.voxeet.conference,
participantsStore: state.voxeet.participants
}
})(ConferenceRoom)