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
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 |
OlderNewer