redux-tiles icon indicating copy to clipboard operation
redux-tiles copied to clipboard

Composable way to create less verbose Redux code

Results 4 redux-tiles issues
Sort by recently updated
recently updated
newest added

I am seeing the benefit of redux-tiles but I would like some clarification on how to best interact between "plural" and "singular" tiles for the same resource type. Suppose you...

function capitalize(str: string, i: number): string { if (i === 0) { return str; } return str[0].toUpperCase() + str.slice(1); }

Hi How about to mark fn functions with special marker so middleware will ignore other actions like redux-thunk actions? I have problem with using tiles with thunk middleware. And i...

In order to make selector queries more cacheable, let's use [reselect](https://github.com/reactjs/reselect).