2023-01-11 18:26:54 -08:00
|
|
|
/* eslint-disable react/no-danger */
|
|
|
|
export const HtmlComment = ({ text }) => (
|
2023-01-11 23:50:26 -08:00
|
|
|
<span style={{ display: 'none' }} dangerouslySetInnerHTML={{ __html: `\n\n<!-- ${text} -->` }} />
|
2023-01-11 18:26:54 -08:00
|
|
|
);
|