UNPKG

330 BJavaScriptView Raw
1import React from 'react';
2import { Layout } from 'antd';
3
4const {Content} = Layout;
5
6export default class ContentView extends React.Component {
7 render() {
8 return (
9 <Content style={{ background: '#fff', padding: 24, margin: 0, minHeight: 280 }}>
10 Content
11 </Content>
12 )
13 }
14}
\No newline at end of file