Kaminos React Generator
A VS Code extension for generating new React component files with the following structure:
StartingComponent
/components
index.ts
/NewComponent
index.ts
NewComponent.tsx
NewComponent.types.ts
NewComponent.stories.tsx (optional)
/tests
NewComponent.test.tsx (optional)
Settings
{
// settings.json
"kaminosReactGenerator.language": "ts",
"kaminosReactGenerator.stylesLanguage": "scss",
"kaminosReactGenerator.createStoriesFile": false,
"kaminosReactGenerator.createTestFile": true,
"kaminosReactGenerator.importReact": true,
"kaminosReactGenerator.useIndexFile": true,
}
| |