import React from 'react';
import Container from '../lib/Container'
export default class Home extends React.Component {
constructor(props, context) {
super(props, context);
}
render() {
return <Container title="App" vtitle="APP列表">
<p>哈哈, 我是 APP 99 3432</p>
</Container>
}
}