mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 15:49:10 +08:00
28051ebe91
* chore: init * chore: update logic * chore: update logic * docs: update doc * docs: fix all * docs: fix all * chore: add public path * chore: write file * docs: en * docs: all * chore: adjust * feat: changelog * docs: fix changelog * chore: update script * chore: fix lint * chore: fix lint * docs: update doc check logic * docs: update changelog * docs: update changelog * test: update test case * test: update test case * test: update snapshot
11 lines
324 B
TypeScript
11 lines
324 B
TypeScript
import React from 'react';
|
|
import type { ComponentChangelogProps } from './ComponentChangelog';
|
|
|
|
const ComponentChangelog = React.lazy(() => import('./ComponentChangelog'));
|
|
|
|
export default (props: ComponentChangelogProps) => (
|
|
<React.Suspense fallback={null}>
|
|
<ComponentChangelog {...props} />
|
|
</React.Suspense>
|
|
);
|