DocSpace-client/packages/asc-web-common/components/PageLayout/sub-components/room-info.js
2022-02-09 12:13:16 +03:00

18 lines
433 B
JavaScript

import { observer } from "mobx-react";
import React from "react";
import styled from "styled-components";
const RoomInfo = ({ children }) => {
const StyledRoomInfo = styled.div`
height: 100%;
width: 400px;
background-color: #ffffff;
border-left: 1px solid #eceef1;
padding: 12px 16px;
`;
return <StyledRoomInfo>{children}</StyledRoomInfo>;
};
export default observer(RoomInfo);