UNPKG

@rn-cli/cli

Version:

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

15 lines (12 loc) 296 B
const componentStylesTemplate = () => { return `import { StyleSheet } from 'react-native'; export const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', }, }); `; }; module.exports = { componentStylesTemplate };