Why I decide to use more my own implementations on react!

@markusspiske

When I started with react, my first thought was like with another framework I used before, use his relate packages like react-select, react-datetime and so on.

But pain show up when after six months, I had to update some app with react 0.13 and I needed to update some parts of it and some components start to bother me with the version of react that require it, that mess the app.

When I started to look a solution the only one that came up was npm dedupe but that doesn't help me.

So in desperation, bother of react versions with his deprecations and each component with his own version of it, I see the light with javascript vanilla.

So that's right I start to look replaces to react components for vanilla packages.

For example I used some react datetimepicker with some bugs and not so custom like flatpickr and so on.

I get ride of my react component dependencies and start to write mine with the vanilla packages.

Now I can work with react without worries that in the future change his api o new versions comes up.