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.
|
# -*- mode: snippet -*-
|
|
# uuid: 295423f2-7029-42d3-ba82-8c5edfda37ce
|
|
# contributor: Jimmy Yuen Ho Wong <wyuenho@gmail.com>
|
|
# name: reactClassExportPureComponent
|
|
# key: rpce
|
|
# --
|
|
|
|
import React, { PureComponent } from 'react'
|
|
|
|
export class ${1:${TM_FILENAME_BASE}} extends PureComponent {
|
|
render() {
|
|
return (
|
|
<div>
|
|
$0
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default ${1:$TM_FILENAME_BASE}
|