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.
 
 
 
 
 
 

16 lines
317 B

# -*- mode: snippet -*-
# uuid: 6847343b-1efa-4db0-9b9a-2c9aaa4217c7
# contributor: Jimmy Yuen Ho Wong <wyuenho@gmail.com>
# name: reactFunctionMemoComponent
# key: rmc
# --
import React, { memo } from 'react'
export default memo(function ${1:${TM_FILENAME_BASE}}() {
return (
<div>
$0
</div>
)
})