next-mdx-remote -> mdx-bundler (#729)

This commit is contained in:
2022-01-09 13:45:38 -05:00
committed by GitHub
parent b7313985db
commit 65416fcc1f
35 changed files with 1624 additions and 821 deletions
+3 -1
View File
@@ -1,3 +1,5 @@
import { memo } from "react";
type Props = {
boxes?: number;
timing?: number;
@@ -54,4 +56,4 @@ const Loading = ({ boxes = 3, timing = 0.1, width }: Props) => {
);
};
export default Loading;
export default memo(Loading);