Frontend React Development
Installation
SKILL.md
Frontend React Development
Component Patterns
File Structure
components/
├── layout/ # TopBar, Sidebar — structural, always visible
├── editor/ # CanvasEditor, LayerPanel, PropertiesPanel — editor-specific
├── export/ # ExportModal — export flow
└── ui/ # Button, Badge, Tooltip, Modal — reusable primitives
Naming Conventions
- Components: PascalCase —
LayerPanel.jsx,ExportModal.jsx - Hooks: camelCase with
useprefix —useCanvas.js,useLayers.js - Utils/Libs: camelCase —
apiClient.js,psdExporter.js - Stores: camelCase with
Storesuffix —editorStore.js