import React from "react"; type Props = { value?: string; }; export const MjmlPreview = ({ value }: Props) => { return ( <> {value?.length ? (
) : (

No template preview

)} ); };