Klimi's new dotfiles with stow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
349 B

# -*- mode: snippet -*-
# uuid: 5fa22440-fa5b-4f3e-98d5-9abe8c68fd5b
# contributor: Jimmy Yuen Ho Wong <wyuenho@gmail.com>
# name: reactClassCompoment
# key: rcc
# --
import React, { Component } from 'react'
export default class ${1:${TM_FILENAME_BASE}} extends Component {
render() {
return (
<div>
$0
</div>
)
}
}