29 lines
874 B
JavaScript
29 lines
874 B
JavaScript
|
|
import React, { Component } from 'react';
|
|
|
|
import classes from './style.css';
|
|
|
|
export default class Placeholder extends Component {
|
|
render() {
|
|
return (
|
|
<div className={classes.settings}>
|
|
<a
|
|
className={classes.button}
|
|
href="mailto:var.845541909@qq.com?Subject=WeWeChat%20Feedback"
|
|
target="_blank">
|
|
发送反馈
|
|
<i className="icon-ion-ios-email-outline" />
|
|
</a>
|
|
|
|
<a
|
|
className={classes.button}
|
|
href="https://gitee.com/spark-community-works-collections/wewechat-plus-plus"
|
|
target="_blank">
|
|
Fork on Github
|
|
<i className="icon-ion-social-github" />
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|
|
}
|