Skip to content

Instantly share code, notes, and snippets.

View oleksandr-danylchenko's full-sized avatar

Oleksandr Danylchenko oleksandr-danylchenko

  • Binary Studio
  • Ukraine, Kyiv
  • 03:58 (UTC +03:00)
View GitHub Profile
@forstjiri
forstjiri / StringToNode.tsx
Last active February 11, 2025 03:40
Fragment with dangerouslySetInnerHtml replacement -
import React from 'react';
interface IProps {
children: unknown;
}
/**
* Takes node content and makes JSX element out of it (kind of like dangerouslySetInnerHTML)
* Careful, always sanitize input!
* credit @yairEO https://github.com/facebook/react/issues/12014#issuecomment-1621382570