Skip to content

Instantly share code, notes, and snippets.

@inoh
Last active April 4, 2017 00:35
Show Gist options
  • Save inoh/5938e05ebac268031d3b90270201116c to your computer and use it in GitHub Desktop.
Save inoh/5938e05ebac268031d3b90270201116c to your computer and use it in GitHub Desktop.
アローファンクションの引数の話

かっこあり

const App = ({ history }) => (
  <Router history={history}></Router>
);
var App = function App(_ref) {
  var history = _ref.history;
  return React.createElement(Router, { history: history });
};

かっこなし

const App = (history) => (
  <Router history={history}></Router>
);
var App = function App(history) {
  return React.createElement(Router, { history: history });
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment