mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 13:20:44 +08:00
26 lines
697 B
JavaScript
26 lines
697 B
JavaScript
import React from 'react';
|
|
import { CoralLogo } from 'plugin-api/beta/client/components/ui';
|
|
import styles from './MyPluginComponent.css';
|
|
|
|
class MyPluginComponent extends React.Component {
|
|
render() {
|
|
return (
|
|
<div className={styles.myPluginContainer}>
|
|
<CoralLogo className={styles.logo} />
|
|
<div className={styles.description}>
|
|
<h3>Plugin created by Talk CLI</h3>
|
|
|
|
<small>
|
|
To read more about plugins check{' '}
|
|
<a href="https://coralproject.github.io/talk/plugins-client.html">
|
|
our docs and guides!
|
|
</a>
|
|
</small>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default MyPluginComponent;
|