// ── ORNAMENTAL SVG DIVIDER ────────────────────────────────────── const OrnamentDivider = ({ width = 320 }) => ( ); // ── CORNER ORNAMENT ───────────────────────────────────────────── const CornerOrnament = ({ size = 40 }) => ( ); // React hooks exposed globally for other scripts const { useState, useEffect, useRef } = React; Object.assign(window, { OrnamentDivider, CornerOrnament, useState, useEffect, useRef });