import * as React from "react"; import { useTheme } from "styled-components"; import Frame from "../components/Frame"; import { EmbedProps as Props } from "."; function JSFiddle(props: Props) { const normalizedUrl = props.attrs.href.replace(/(\/embedded)?\/$/, ""); const theme = useTheme(); return ( ); } JSFiddle.ENABLED = [new RegExp("https?://jsfiddle\\.net/(.*)/(.*)$")]; export default JSFiddle;