mirror of
https://github.com/wassname/talk.git
synced 2026-07-12 18:15:45 +08:00
Stable version
This commit is contained in:
@@ -6,7 +6,6 @@ class Slot extends Component {
|
||||
console.log('Slot Mounted');
|
||||
}
|
||||
render() {
|
||||
const {slot} = this.props;
|
||||
return (
|
||||
<div>
|
||||
{injectedPlugins}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import {client as clientPlugins} from 'pluginsConfig';
|
||||
|
||||
function importer (slot) {
|
||||
function importer () {
|
||||
let context,
|
||||
importedFiles;
|
||||
|
||||
@@ -66,7 +66,7 @@ function importer (slot) {
|
||||
return filterByUserConfig(importedFiles)
|
||||
.filter(key => key.format === 'js')
|
||||
.reduce((entry, plugin) => {
|
||||
entry.push(context(plugin.key)(getConfig(plugin.name)))
|
||||
entry.push(context(plugin.key)(getConfig(plugin.name)));
|
||||
return entry;
|
||||
}, []);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user