Files
schisandra-cloud-storage-fr…/src/router/modules/main/share/index.ts
2024-07-02 20:13:48 +08:00

12 lines
194 B
TypeScript

/** @format */
import { lazy } from "react";
const MainShare = lazy(
() =>
new Promise((resolve: any) => {
resolve(import("@/components/Main/Share"));
}),
);
export default MainShare;