// App composition + Tweaks panel const DEFAULTS = /*EDITMODE-BEGIN*/{ "heroVariant": "A", "howVariant": "A", "pricingVariant": "A" }/*EDITMODE-END*/; function App() { const [t, setTweak] = useTweaks(DEFAULTS); const Hero = t.heroVariant === "B" ? HeroB : t.heroVariant === "C" ? HeroC : HeroA; const How = t.howVariant === "B" ? HowB : t.howVariant === "C" ? HowC : HowA; const Pricing = t.pricingVariant === "B" ? PricingB : t.pricingVariant === "C" ? PricingC : PricingA; return ( <>