Created
September 2, 2020 17:49
-
-
Save sulram/b11eec9e2b3ceecc3f76d47be1601ed6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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