Registering Components
App or Plugin
import { Plugin } from '@blueeast/bluerain-os';
const Logo = props => {
return (
<div>/* component code */</div>
)
}
export default class FooPlugin extends Plugin {
static pluginName = 'FooPlugin';
static components = {
Logo
};
}Using the set method of ComponentRegistry
set method of ComponentRegistryLast updated