Taken from here
Add remonte branch:
git remote add --track master mleung git://github.com/mleung/feather.git
Verify:
git remote
Taken from here
Add remonte branch:
git remote add --track master mleung git://github.com/mleung/feather.git
Verify:
git remote
| export const updateFilter = filterOptions => { | |
| let {contentType} = filterOptions; | |
| let actionType; | |
| switch(contentType) { | |
| case 'module': | |
| actionType = 'UPDATE_MODULE_FILTER'; | |
| break; | |
| case 'trail': |
| import React from 'react'; | |
| import * as My from './components/my-components.js'; | |
| export default class App extends React.Component { | |
| render() { | |
| return ( | |
| <div> | |
| <My.Foo /> | |
| <My.Bar /> |
| # config.ru | |
| # The Rack::TryStatic middleware delegates requests to Rack::Static middleware | |
| # trying to match a static file | |
| # | |
| # Inspired by original code from rack-contrib | |
| # http://github.com/rack/rack-contrib/blob/master/lib/rack/contrib/try_static.rb | |
| # | |
| module Rack |
| // === Arrays | |
| var [a, b] = [1, 2]; | |
| console.log(a, b); | |
| //=> 1 2 | |
| // Use from functions, only select from pattern | |
| var foo = () => { | |
| return [1, 2, 3]; |