meshtastic/src/components/PageLayout.tsx

26 lines
444 B
TypeScript
Raw Normal View History

2022-04-02 06:17:50 -07:00
import React from 'react';
import Layout from '@theme/Layout';
export interface PageLayoutProps {
title: string;
description: string;
children: React.ReactNode;
}
export const PageLayout = ({
title,
description,
children,
}: PageLayoutProps): JSX.Element => {
return (
<Layout title={title} description={description}>
{children}
</Layout>
);
};
export interface ColorModeProps {
children: React.ReactNode;
}