From 5fb57127f47b1b92b8bfd10f8b4bd59653244475 Mon Sep 17 00:00:00 2001 From: Krishna Ayyalasomayajula Date: Mon, 1 Jun 2026 19:42:25 -0500 Subject: [PATCH] fix: use m.div instead of motion.div inside LazyMotion --- app/template.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/template.tsx b/app/template.tsx index b4dfc7a..c684ac4 100644 --- a/app/template.tsx +++ b/app/template.tsx @@ -1,15 +1,15 @@ "use client"; -import { motion } from "motion/react"; +import { m } from "motion/react"; export default function Template({ children }: { children: React.ReactNode }) { return ( - {children} - + ); }