yapi/client/containers/Home/Home.js

13 lines
255 B
JavaScript
Raw Normal View History

2017-07-05 14:10:06 +08:00
import React from 'react'
2017-07-05 21:08:51 +08:00
import { Button } from 'antd';
2017-07-06 01:09:33 +08:00
import Header from '../../components/Header/Header.js'
2017-07-05 14:10:06 +08:00
2017-07-06 01:09:33 +08:00
export default function Home() {
2017-07-05 14:10:06 +08:00
return (
<acticle>
<Header />
2017-07-05 21:08:51 +08:00
<Button type="primary">Primary</Button>
2017-07-05 14:10:06 +08:00
</acticle>
)
2017-07-05 21:08:51 +08:00
}