Registering a Component
Through a Plugin
import { View } from '@bluebase/core';
β
const Logo = props => {
return (
<View>/* component code */</View>
)
}
β
const Plugin = {
β
name: 'Example Plugin',
key: 'example-plugin',
β
components: {
Logo
}
}Through Registry API
Last updated
Was this helpful?