Skip to content

Instantly share code, notes, and snippets.

@arekko
Created March 2, 2020 12:33
Show Gist options
  • Save arekko/1ab482ef0a0fb3f5bd76c0d7a1417a3d to your computer and use it in GitHub Desktop.
Save arekko/1ab482ef0a0fb3f5bd76c0d7a1417a3d to your computer and use it in GitHub Desktop.
Live template for WebStorm (React Functional Component typescript)
import React from 'react';
import {StyleSheet} from 'react-native';
interface $ComponentName$Props {}
const $ComponentName$:React.FC<$ComponentName$Props> = ({}) => {
return ($END$)
}
export default $ComponentName$;
const styles = StyleSheet.create({})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment