mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-03-05 21:00:08 -08:00
26 lines
443 B
TypeScript
26 lines
443 B
TypeScript
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;
|
|
}
|