Files
gh-alekspetrov-navigator/skills/frontend-component/templates/component-simple-template.tsx
2025-11-29 17:51:59 +08:00

21 lines
331 B
TypeScript

/**
* ${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>
);
};