├── .editorconfig ├── .gitignore ├── .travis.yml ├── Gulpfile.js ├── README.md ├── package.json └── snippets └── React (JSX).cson /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbushka/atom-react-snippets/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbushka/atom-react-snippets/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbushka/atom-react-snippets/HEAD/Gulpfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbushka/atom-react-snippets/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbushka/atom-react-snippets/HEAD/package.json -------------------------------------------------------------------------------- /snippets/React (JSX).cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webbushka/atom-react-snippets/HEAD/snippets/React (JSX).cson --------------------------------------------------------------------------------