mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-25 13:03:59 -05:00
13 lines
256 B
TypeScript
13 lines
256 B
TypeScript
import clsx from "clsx";
|
|
import styles from "./MatchPage.module.css";
|
|
|
|
export function MatchPage({
|
|
children,
|
|
className,
|
|
}: {
|
|
children?: React.ReactNode;
|
|
className?: string;
|
|
}) {
|
|
return <div className={clsx(styles.root, className)}>{children}</div>;
|
|
}
|