import * as React from "react"; import Frame from "../components/Frame"; import useComponentSize from "../components/hooks/useComponentSize"; import { EmbedProps as Props } from "."; export default function Berrycast({ matches, ...props }: Props) { const normalizedUrl = props.attrs.href.replace(/\/$/, ""); const ref = React.useRef(null); const { width } = useComponentSize(ref.current); return ( <>
); }