Justin Schrader

Results 24 comments of Justin Schrader

A good icon is the cornerstone of any decent framework, without that it all goes to shit. Serious oversight on the part of those involved... An embarrassment really.

Same problem here, any work-arounds? I'm trying to use this to test methods like componentDidMount or other custom internal component functions.

I've tried setting up my webpack plugin config as above, but I still end up with compiled code that is actually larger than just using `uglify-webpack-plugin`... Any ideas of things...

Same problem here, no matter what I try I can't seem to make the theme take effect: ```javascript import theme from 'rttheme'; import ThemeProvider from 'react-toolbox/lib/ThemeProvider'; const CoreLayout = ()...

Edit: I've also tried importing raw RT components as outlined [here](https://github.com/react-toolbox/react-toolbox#raw-component) ```javascript import Input from 'react-toolbox/lib/input/Input'; import Button from 'react-toolbox/lib/button/Button'; ``` but then I end up with **no** styles at...

There might be ways we can improve this hook to work better with `*` in `react-router` 🤔 ... as it stands in the current version, for this use case, you'd...

Thanks @gaspardip - yea types could be better for this

Thanks @Nodios! I think that change might make sense as an optional param, but it unfortunately I don't think it solves @gaspardip's original issue (it might make it a bit...

We might be able to do something like `element()?.props` in `useReactRouterBreadcrumbs` because when an element is returned via `useRoutes` it includes all the nested route data. It might cause unexpected...

Here's an experimental PR with support for nested route objects within `element` components... I'm not super comfortable with it (`route.element?.type()?.props?.value?.matches[0]?.route?.children[0]?.breadcrumb` lol), but it does seem to work https://github.com/icd2k3/use-react-router-breadcrumbs/pull/69 I'll run...