yapi/client/containers/Home/Home.js

27 lines
549 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import './Home.scss'
import React, { Component } from 'react'
import Login from '../Login/login-wrap'
class Home extends Component {
constructor(props) {
super(props)
}
render () {
return (
<div className="home-main">
<div className="main-one">
<div className="home-des">
<p className="title">YAPI</p>
<div className="detail">一个高效易用功能强大的api管理系统</div>
</div>
<Login/>
</div>
</div>
)
}
}
export default Home