g6/packages/site/.dumi/pages/largegraph.zh.tsx
2023-03-01 12:33:24 +08:00

16 lines
350 B
TypeScript

import React from 'react';
import Page from '../../pages/largegraph';
import { Header } from '@antv/dumi-theme-antv/dist/slots/Header';
import { Footer } from '@antv/dumi-theme-antv/dist/slots/Footer';
const LargeGraph: React.FC = () => {
return (
<>
<Header />
<Page />
<Footer />
</>
);
};
export default LargeGraph;