import React from "react"; function RenderSources({ sources }) { return ( <> {sources.html &&
{sources.html_html && (
)}
{!sources.html_html && {sources.html}}
)}
{sources.css &&
{sources.css_html && (
)}
{!sources.css_html && {sources.css}}
)}
{sources.js &&
{sources.js_html && (
)}
{!sources.js_html && {sources.js}}
)}
>
);
}
function RenderLiveSample({ example }) {
const srcdoc = `