Skip to content

Instantly share code, notes, and snippets.

View imapolaris's full-sized avatar

alexsuen imapolaris

View GitHub Profile
@imapolaris
imapolaris / moduleSingleton.js
Created October 18, 2019 10:09
create a singleton
// file a
class A {
welcome(name) {
console.log('welcome, ', name)
}
}
export let AIns = new A()
@imapolaris
imapolaris / alex' gists
Last active August 31, 2017 01:34
PropTypes
import PropTypes from 'prop-types'
class ZJ extends Component{
}
ZJ.propTypes = {
value: PropTypes.number.isRequired,
func: PropTypes.func.isRequired
}
@imapolaris
imapolaris / readme.md
Created August 28, 2017 03:01
myfirstgists

the first file==>readme.md