Oleksandr Pustovalov

Results 60 comments of Oleksandr Pustovalov

Hi! Your porject is awsome. I'm author of [Structor](https://github.com/ipselon). And I think that it would be nice if your lib was included in new boilerplate on [Structor Market](http://helmetrex.com). What do...

Perfect, I will try to create a boilerplate, and if you will want to you may correct it. Also, if you are willing to contribute to Structor you are welcome.

Hey @dennybritz I uploaded the boilerplate with your components for Structor. Please find it on [Structor Market](http://helmetrex.com). The source code is here [https://github.com/ipselon/neal-react-prepack](https://github.com/ipselon/neal-react-prepack). Thank you.

Perfect! It would be great if you gave any feedback about structor.

@SoftHai, Here is how you can reuse PropTypes: ``` export const baseTypes = { alignSelf: PropTypes.oneOf(['start', 'center', 'end', 'stretch']) } ``` ``` static propTypes = { align: PropTypes.oneOf([ 'start', 'center',...

@SoftHai, thank you for the detailed explanation. I'll add some TS typings into the `react-app-framework` package in the next release. As a workaround, I'd like to suggest using the following...

@SoftHai, > Option and StateOfDispatch are types which has to be defined in the specific application, isn't it? Yes, that's correct.

@SoftHai, thank you. I'll keep this issue until I add this as an example to the User Guide.

@SoftHai, It seems that my example is not correct. Please consider my following example for TS types in function. ***global.d.ts*** ```typescript import { History } from 'history'; export type DispatchFunction...