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