1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

Fix remaining RoomView conflict

RoomContext was pulled out to its own file.
This commit is contained in:
Travis Ralston
2020-01-07 15:54:51 -07:00
parent 3e5cc9550b
commit 727ce892de

View File

@@ -66,17 +66,7 @@ if (DEBUG) {
debuglog = console.log.bind(console); debuglog = console.log.bind(console);
} }
<<<<<<< HEAD
export const RoomContext = PropTypes.shape({
canReact: PropTypes.bool.isRequired,
canReply: PropTypes.bool.isRequired,
room: PropTypes.instanceOf(Room),
});
export default createReactClass({ export default createReactClass({
=======
module.exports = createReactClass({
>>>>>>> develop
displayName: 'RoomView', displayName: 'RoomView',
propTypes: { propTypes: {
ConferenceHandler: PropTypes.any, ConferenceHandler: PropTypes.any,