Very, very simple command line tool to create a new React Native class file with the correct imports.
npm install -g classyact
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)
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({
});