DocSpace-buildtools/web/ASC.Web.Components/src/components/page-layout/sub-components/section-paging.js

16 lines
354 B
JavaScript
Raw Normal View History

import React from "react";
import styled from "styled-components";
const StyledSectionPaging = styled.div`
margin: 0 0 16px;
`;
const SectionPaging = React.memo(props => {
//console.log("PageLayout SectionPaging render");
return <StyledSectionPaging {...props} />;
});
SectionPaging.displayName = "SectionPaging";
export default SectionPaging;