tron-v1
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
331 B

7 months ago
  1. import React from "react";
  2. import { AntdRegistry } from "@ant-design/nextjs-registry";
  3. const RootLayout = ({ children }: React.PropsWithChildren) => (
  4. <html lang="en">
  5. <body style={{ backgroundColor: "#cccccc", margin: 0 }}>
  6. <AntdRegistry>{children}</AntdRegistry>
  7. </body>
  8. </html>
  9. );
  10. export default RootLayout;