mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
7 lines
216 B
JavaScript
7 lines
216 B
JavaScript
import { createSelector } from '@reduxjs/toolkit';
|
|
|
|
const billByIdSelector = (state, props) => state.bills.items[props.billId];
|
|
|
|
export const getBillById = () =>
|
|
createSelector(billByIdSelector, (_bill) => _bill);
|