mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-12 13:49:22 -05:00
11 lines
242 B
TypeScript
11 lines
242 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", className)}>{children}</main>;
|