12 lines
194 B
TypeScript
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;
|