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

13 lines
307 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} />);
});
export default SectionPaging;