// Adapted from jalcoui (MIT) — github.com/jal-co/ui 'use client'; import { createLazyComponent } from '../../../../common/lazy-wrapper'; import type { CommitGraphProps } from './types'; export const LazyCommitGraph = createLazyComponent( () => import('./CommitGraph').then((mod) => ({ default: mod.CommitGraph })), { displayName: 'LazyCommitGraph', fallback: (
), }, ); export type { CommitGraphProps, Commit, CommitAuthor, } from './types';