mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-21 05:19:42 +08:00
29 lines
403 B
JavaScript
29 lines
403 B
JavaScript
import './ProjectCard.scss'
|
|
import React, { Component } from 'react'
|
|
// import PropTypes from 'prop-types'
|
|
|
|
class ProjectCard extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = {
|
|
|
|
};
|
|
}
|
|
|
|
static propTypes = {
|
|
|
|
}
|
|
|
|
render() {
|
|
|
|
return (
|
|
<div className="p-box">
|
|
<div className="p-container"></div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
}
|
|
|
|
export default ProjectCard
|