Skip to content

Instantly share code, notes, and snippets.

@jariz
Last active February 1, 2021 15:10
Show Gist options
  • Select an option

  • Save jariz/d9901d28ba06a840990f3e765c80d641 to your computer and use it in GitHub Desktop.

Select an option

Save jariz/d9901d28ba06a840990f3e765c80d641 to your computer and use it in GitHub Desktop.
const tagMap = { p: Body, h1: ... };
return (
<>
<HtmlMapper html={intro}>
{{
...tagMap,
p: ({ ...props }) => <Body variant="large" {...props} />,
}}
</HtmlMapper>
<HtmlMapper html={text}>{tagMap}</HtmlMapper>
</>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment