mirror of
https://github.com/wassname/talk.git
synced 2026-07-27 11:28:12 +08:00
17 lines
342 B
JavaScript
17 lines
342 B
JavaScript
import React, {Component} from 'react';
|
|
import {importer as injectPlugins} from 'coral-framework/helpers/importer';
|
|
import actions from 'coral-framework/actions';
|
|
|
|
class Slot extends Component {
|
|
render() {
|
|
const {fill} = this.props;
|
|
return (
|
|
<div>
|
|
{injectPlugins(fill)}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Slot;
|