This commit is contained in:
David Bland 2025-08-12 10:49:41 -04:00
parent d1f1464903
commit a4ba3c4f5d
3 changed files with 64 additions and 298 deletions

View file

@ -0,0 +1,11 @@
import './styles.css';
const {{ComponentName}} = () => {
return (
<div className="{{ComponentName}}">
<h1>{{ComponentName}} Component</h1>
</div>
);
}
export default {{ComponentName}};