SoyBeansLab / daizu-online-judge-frontend-old

We will be back. [WIP]
MIT License
4 stars 1 forks source link

Selectorの作り方のベストプラクティスを調べる #307

Closed ucpr closed 4 years ago

ucpr commented 4 years ago

概要

その他

ucpr commented 4 years ago
export const shootingById = createSelector(
  [shootings,(state,shootingId) => shootingId],
  (shootings, shootingId) => head(shootings.filter(s => s._id === shootingId))
);

こういう書き方が出来るらしい :eyes: