import React from "react"; import Head from "next/head"; import styles from "./Layout.module.sass"; import { Sidebar } from "./Sidebar"; import MagicImage from "./MagicImage"; export const siteTitle = "Aite RP" interface LayoutProps { children: React.ReactNode } export default function Layout(props: LayoutProps) { return (
{props.children}
); }