rct-generator
v1.0.6
Published
RCT generator is command line program, built to make generating react boilerplate code easier.
Readme
React Native Generator CLI
RCT generator is command line program, built to make generating react boilerplate code easier.
Generate a screen
Creates a folder with a container.tsx, component.tsx, style.ts and an index.ts files.
rct-generator g screen test-component
rct-generator g component test-component --screenGenerate a component
Creates a folder with a component.tsx, style.ts and an index.ts files.
rct-generator g component test-componentGenerate redux and api call files
Creates an action, reducer and types files enclose in their respective folders
rct-generator g redux auth