mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 14:56:43 +08:00
16 lines
298 B
JavaScript
16 lines
298 B
JavaScript
import React from 'react';
|
|
import {CoralLogo} from 'plugin-api/beta/client/components/ui';
|
|
|
|
class MyPluginComponent extends React.Component {
|
|
render() {
|
|
return (
|
|
<div>
|
|
<CoralLogo />
|
|
Plugin Created by Talk CLI
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default MyPluginComponent;
|