mirror of
https://gitee.com/antv/g6.git
synced 2024-12-05 05:09:07 +08:00
16 lines
350 B
TypeScript
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; |