mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-07 01:13:58 +08:00
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>
|
|
);
|
|
};
|