Created
September 9, 2019 13:33
-
-
Save antonjb/161d731c290a51cf97e26ea6593c2d57 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
export const ContentBox = createRegisterableComponent( | |
"content-box", | |
(props: { content: string }, services) => ( | |
<div> | |
<p>{props.content}</p> | |
{services.featureState.showSpecial && ( | |
<div>Special content item - enabled with feature toggle service</div> | |
)} | |
</div> | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment