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