fix: prettier config

This commit is contained in:
hamster1963
2024-12-13 17:26:28 +08:00
parent 1483ce56fa
commit 9a2f3ea8e6
81 changed files with 1666 additions and 2286 deletions
+1 -1
View File
@@ -1 +1 @@
export { domMax as default } from "framer-motion";
export { domMax as default } from "framer-motion"
+4 -5
View File
@@ -1,12 +1,11 @@
import { LazyMotion } from "framer-motion";
import { LazyMotion } from "framer-motion"
const loadFeatures = () =>
import("./framer-lazy-feature").then((res) => res.default);
const loadFeatures = () => import("./framer-lazy-feature").then((res) => res.default)
export const MotionProvider = ({ children }: { children: React.ReactNode }) => {
return (
<LazyMotion features={loadFeatures} strict key="framer">
{children}
</LazyMotion>
);
};
)
}