A collection of Untile react components to build web applications based on react.
interface RawHtmlProps {
children: ReactNode;
className?: string;
element?: string;
}
import { RawHtml } from '@untile/react-core/components/raw-html';
<RawHtml element={'div'}>
{`foo<br>bar`}
</RawHtml>