Skip to content

Instantly share code, notes, and snippets.

View aleger's full-sized avatar

Andrew Leger aleger

View GitHub Profile
@leocristofani
leocristofani / RFReactSelect.js
Last active June 8, 2020 14:59
How to integrate React Select with Redux Form
import React, { PropTypes } from 'react';
import Select from 'react-select';
import 'react-select/dist/react-select.css';
RFReactSelect.defaultProps = {
multi: false,
className: ""
};
RFReactSelect.propTypes = {
@AJ-Acevedo
AJ-Acevedo / fizzbuzz_for_loop.js
Last active April 25, 2018 23:53
JavaScript - Fizz Buzz
#!/usr/bin/env node
/*
* JavaScript Fizz Buzz using a for loop
* Copyright (c) 2013 AJ Acevedo | http://ajacevedo.com
* This content is released under the MIT License.
* http://www.opensource.org/licenses/mit-license.php
* Version: 0.1
*/