Skip to content

prototyperapp/classyact

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 

Repository files navigation

Classyact

Very, very simple command line tool to create a new React Native class file with the correct imports.

Installation

npm install -g classyact

Usage

Go to the folder where you want to create the new class and then type:

classyact MyClassName

Where MyClassName is the name of your class (don't include .js or anything like that)

Example of the class created

The class created for you will look something like this...

import React, { Component } from 'react';
import {
	StyleSheet,
	Text,
	View
} from 'react-native';

export default class Example extends Component {
	render() {

	}
}

const localStyles = StyleSheet.create({

});

About

Command line utility for quickly creating React Native class templates

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors