import React, { Component } from 'react';
import { Card, Button } from 'antd';

class ecFrontPage extends Component {
	constructor(props) {
		super(props)
	}

	render() {
		return (
			<div>
				<Card title="乐政通系统" headStyle={{textAlign: 'center', fontSize: '36px'}}>
					<div style={{width: '100%'}}>
						<Button type="primary" style={{margin: '100px auto', display: 'block'}}>
							<a href='/yiBoard/home' target='blank'>
								德生对外应用平台
							</a>
						</Button>
					</div>
				</Card>
			</div>
		)
	}
}
export default ecFrontPage