import * as React from "react"; // ----------------------------------------------------------------------------- // Import React components // ----------------------------------------------------------------------------- // We import the components with React.lazy to get code splitting in the // builder and shrink the bundle. // ----------------------------------------------------------------------------- const Breadcrumb = React.lazy(() => import("./Breadcrumb")); // ----------------------------------------------------------------------------- // Component named export // ----------------------------------------------------------------------------- export { Breadcrumb };