home/.vim/bundle/vim-template/templates/=template=.jsx
Salt 58b1e98578 .vim: Dammit
Forgot to trim .git information from plugins
2017-08-16 14:37:46 -05:00

22 lines
292 B
JavaScript

/*
* %FFILE%
* Copyright (C) %YEAR% %USER% <%MAIL%>
*
* Distributed under terms of the %LICENSE% license.
*/
import React, { Component } from 'react'
class %FILE% extends Component {
constructor(props: any) {
super(props)
}
render() {
return (
%HERE%
)
}
}