mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
ff31a5b555
This reverts commit 7a07b128d1
.
12 lines
219 B
JavaScript
12 lines
219 B
JavaScript
import React from 'react';
|
|
import Layout from '../Layout';
|
|
import MainContent from './MainContent';
|
|
|
|
export default (props) => {
|
|
return (
|
|
<Layout {...props}>
|
|
<MainContent {...props} />
|
|
</Layout>
|
|
);
|
|
};
|