jedireza / aqua

:bulb: A website and user system starter
https://jedireza.github.io/aqua/
MIT License
1.38k stars 356 forks source link

Update PropType of value field for shared form components #251

Closed jedireza closed 7 years ago

jedireza commented 7 years ago

We should update the PropTypes for the shared form components so the values are happy to take Numbers and Strings.

const propTypes = {
    // ...
    value: PropTypes.oneOfType([
        PropTypes.string,
        PropTypes.number
    ])
};

https://github.com/jedireza/aqua/tree/master/client/components/form

socksrust commented 7 years ago

hey @jedireza let me take this ;)

Also, i'm building a boilerplate as well, if u would like to check it out: https://github.com/jaburcodes/flash

socksrust commented 7 years ago

is there anything missing?

jedireza commented 7 years ago

Nope. I just forgot to close this.