DNDGamePlayer: Electron редактор сцен, презентация, упаковка electron-builder

Made-with: Cursor
This commit is contained in:
Ivan Fontosh
2026-04-19 14:16:54 +08:00
commit a6cbcc273e
82 changed files with 22195 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import React from 'react';
import styles from './Surface.module.css';
type Props = {
children: React.ReactNode;
/** Разрешено `undefined` из CSS-модулей при `exactOptionalPropertyTypes`. */
className?: string | undefined;
style?: React.CSSProperties | undefined;
};
export function Surface({ children, className, style }: Props) {
return (
<div className={[styles.root, className].filter(Boolean).join(' ')} style={style}>
{children}
</div>
);
}