UNPKG

427 BJavaScriptView Raw
1import React from 'react';
2import PubSub from 'pubsub-js';
3
4import { Layout } from 'antd';
5
6const {Content} = Layout;
7
8
9export default class ContentView extends React.Component {
10 constructor(props) {
11 super(props);
12
13 }
14
15 render() {
16 return (
17 <Content style={{ background: '#fff', padding: 24, margin: 0, minHeight: 280 }}>
18 Content
19 </Content>
20 )
21 }
22}
\No newline at end of file