mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-21 14:42:03 -05:00
13 lines
256 B
TypeScript
13 lines
256 B
TypeScript
import clsx from "clsx";
|
|
import type * as React from "react";
|
|
|
|
export const Main = ({
|
|
children,
|
|
className,
|
|
}: {
|
|
children: React.ReactNode;
|
|
className?: string;
|
|
}) => (
|
|
<main className={clsx("layout__main", "main", className)}>{children}</main>
|
|
);
|