You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
514 B
16 lines
514 B
import "antd/es/layout/style";
|
|
import _Layout from "antd/es/layout";
|
|
import React from 'react';
|
|
import { ConfigProviderWarp } from '@ant-design/pro-provider';
|
|
|
|
var WrapContent = function WrapContent(props) {
|
|
var style = props.style,
|
|
className = props.className,
|
|
children = props.children;
|
|
return /*#__PURE__*/React.createElement(ConfigProviderWarp, null, /*#__PURE__*/React.createElement(_Layout.Content, {
|
|
className: className,
|
|
style: style
|
|
}, children));
|
|
};
|
|
|
|
export default WrapContent; |