Skip to content

Instantly share code, notes, and snippets.

@sulram
Created September 2, 2020 17:49
Show Gist options
  • Save sulram/b11eec9e2b3ceecc3f76d47be1601ed6 to your computer and use it in GitHub Desktop.
Save sulram/b11eec9e2b3ceecc3f76d47be1601ed6 to your computer and use it in GitHub Desktop.
import Block from './PageBuilder/Block'
import Cover from './PageBuilder/Cover'
import Embed from './PageBuilder/Embed'
const DynamicBlock = (props) => {
const blocks = {
"pages.cover": Cover,
"pages.block": Block,
"pages.embed": Embed
}
const type = props.data["__component"]
if(type && type in blocks) {
const MyBlock = blocks[type]
return <MyBlock data={props.data} />
}
}
export default DynamicBlock
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment