UNPKG

@rn-cli/cli

Version:

A powerful CLI tool to auto-generate boilerplate React Native components and screens with consistent structure.

9 lines (7 loc) 193 B
const componentTypesTemplate = (componentName) => { return `export interface ${componentName}Props { // Define your props here } `; }; module.exports = { componentTypesTemplate };