Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 17:51:59 +08:00
commit 38e80921c8
89 changed files with 20480 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
/**
* ${COMPONENT_NAME} - ${DESCRIPTION}
*/
import React from 'react';
${STYLE_IMPORT}
${PROPS_INTERFACE}
export const ${COMPONENT_NAME}: React.FC<${PROPS_INTERFACE}> = ({
children,
className,
...props
}) => {
return (
<div className={`${styles.container} ${className || ''}`}>
{children}
</div>
);
};