An example of creating a multidimensional drag-to-reorder grid with Reorder in Motion for React.
"use client" import ReorderGrid from "@/components/ui/motion-reorder-grid" export default function Default() { return ( <div className="motion-example flex w-full items-center justify-center p-8"> <ReorderGrid /> </div> ) }