Last active
June 16, 2017 14:32
-
-
Save igemnace/81b17db53341571f473d2b1e6490b3e7 to your computer and use it in GitHub Desktop.
Example template with vim-template-lite and abolish.vim.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
augroup TemplatesVim | |
autocmd! | |
" trigger vim-abolish on template load | |
autocmd User TemplateLoad silent! execute "%S/skeleton-name/" . expand('%:t:r:r') . "/g" | |
augroup END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
import React, { PropTypes, Component } from 'react'; | |
import { View } from 'react-native'; | |
import { styles } from './skeleton-name.styles.js'; | |
export default class SkeletonName extends Component { | |
constructor(props) { | |
super(props); | |
} | |
static propTypes = {} | |
render() { | |
return ( | |
<View> | |
</View> | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment