Files
talk/client/coral-framework/components/Slot.js
T
2017-03-29 17:21:31 -03:00

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;