Instead of writing this:
<FilterBar filters={filters} setFilters={setFilters} />
I like to write this when the props and the variables are the same name as a shorthand.
<FilterBar {...{ filters, setFilters }} />
Is there any downside to doing this performance-wise?