Skip to content

Instantly share code, notes, and snippets.

@vuongddang
Created December 10, 2020 07:12
Show Gist options
  • Save vuongddang/7286fe843fd518c450f0199cea3b0a20 to your computer and use it in GitHub Desktop.
Save vuongddang/7286fe843fd518c450f0199cea3b0a20 to your computer and use it in GitHub Desktop.
Import and use a particular lodash function in react component
import { maxBy } from 'lodash'
const items = [
{ name: 'A', price: 1 },
{ name: 'B', price: 2 }
]
maxBy(items, 'price')
// => {name: 'B', price: 2}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment