Control which point on a child element stays fixed during a parent's layout animation with layoutAnchor
"use client" import LayoutAnchor from "@/components/ui/motion-layout-anchor" export default function Default() { return ( <div className="motion-example flex w-full items-center justify-center p-8"> <LayoutAnchor /> </div> ) }