enskit@1.13.1 and enssdk@1.13.1"
+ : isBoth
+ ? "enssdk@1.13.1 (and enskit@1.13.1 when using React)"
+ : "enssdk@1.13.1";
+---
+
+
diff --git a/docs/ensnode.io/src/components/molecules/IntegrateHostedEnsNodeTip.astro b/docs/ensnode.io/src/components/molecules/IntegrateHostedEnsNodeTip.astro
index 4369656c3d..eaa37598be 100644
--- a/docs/ensnode.io/src/components/molecules/IntegrateHostedEnsNodeTip.astro
+++ b/docs/ensnode.io/src/components/molecules/IntegrateHostedEnsNodeTip.astro
@@ -1,13 +1,25 @@
---
import { Aside, LinkCard } from "@astrojs/starlight/components";
+import HostedInstanceSdkVersionWarning from "./HostedInstanceSdkVersionWarning.astro";
+
+interface Props {
+ /**
+ * Which SDK the warning should target. Passed through to HostedInstanceSdkVersionWarning.
+ * - "enssdk": enssdk-only warning
+ * - "enskit": both enskit and enssdk warning
+ * - "both": mention both enssdk and enskit, show both install commands (default)
+ */
+ for?: "enssdk" | "enskit" | "both";
+}
+
+const { for: target = "both" } = Astro.props;
---
+