ant-design/.dumi/theme/layouts/IndexLayout/index.tsx
lijianan 371c10c01f
site: update dumi type (#47326)
* site: update dumi type

* fix: fix

* fix: fix

* fix: fix

* fix: fix
2024-02-04 17:08:39 +08:00

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;