mirror of
https://github.com/wassname/talk.git
synced 2026-07-15 11:26:58 +08:00
15 lines
257 B
JavaScript
15 lines
257 B
JavaScript
import React, {Component} from 'react';
|
|
import {injectPlugins} from 'coral-framework/helpers/plugins';
|
|
|
|
class Slot extends Component {
|
|
render() {
|
|
return (
|
|
<div>
|
|
{injectPlugins(this.props)}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Slot;
|