mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 20:37:44 +00:00
* Fix sidebar tabs pre-rendering * Improve sidebar consistency * improve searchbar alignment * improve animation
10 lines
258 B
TypeScript
10 lines
258 B
TypeScript
"use client";
|
|
|
|
import { AnimatePresence as PrimitiveAnimatePresence } from "framer-motion";
|
|
|
|
export const AnimatePresence = (
|
|
props: React.ComponentPropsWithoutRef<typeof PrimitiveAnimatePresence>,
|
|
) => {
|
|
return <PrimitiveAnimatePresence {...props} />;
|
|
};
|