mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-18 19:39:51 +08:00
371c10c01f
* site: update dumi type * fix: fix * fix: fix * fix: fix * fix: fix
28 lines
654 B
TypeScript
28 lines
654 B
TypeScript
import type { PropsWithChildren } from 'react';
|
|
import React from 'react';
|
|
import { Helmet } from 'dumi';
|
|
|
|
import Footer from '../../slots/Footer';
|
|
|
|
interface IndexLayoutProps {
|
|
title?: string;
|
|
desc?: string;
|
|
}
|
|
|
|
const IndexLayout: React.FC<PropsWithChildren<IndexLayoutProps>> = (props) => {
|
|
const { children, title, desc } = props;
|
|
return (
|
|
<>
|
|
<Helmet>
|
|
<title>{title}</title>
|
|
<meta property="og:title" content={title} />
|
|
{desc && <meta name="description" content={desc} />}
|
|
</Helmet>
|
|
<div style={{ minHeight: '100vh' }}>{children}</div>
|
|
<Footer />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default IndexLayout;
|