From 536b8a5313daa01eb645af01364eb01307601a77 Mon Sep 17 00:00:00 2001
From: Rishi Raj Jain <rishi18304@iiitd.ac.in>
Date: Thu, 18 Apr 2024 04:37:38 +0530
Subject: [PATCH] Update images.mdx (#7856)

Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
---
 src/content/docs/en/guides/images.mdx | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/content/docs/en/guides/images.mdx b/src/content/docs/en/guides/images.mdx
index 5c1bb9070c8fa..214740075e6f1 100644
--- a/src/content/docs/en/guides/images.mdx
+++ b/src/content/docs/en/guides/images.mdx
@@ -530,6 +530,9 @@ import rocket from '../assets/rocket.png';
 
 # My MDX Page
 
+// Local image stored in the the same folder
+![Houston in the wild](houston.png)
+
 // Local image stored in src/assets/
 <Image src={rocket} alt="A rocketship in space." />
 <img src={rocket.src} alt="A rocketship in space." />