I am developing an application with react/redux, and I started using library react-intl for formatting messages and dates.
I have already been able to show in a <FormattedDate>
tag what timezone it's using.
I would like to have in a select all the possible timezones existing, so when the user picks one timezone, the <FormattedDate>
changes to that format automatically.
I don't find how to list all posible timezones with react-intl.
I have also searched in google, and I did not find any built-in javascript function that does that.
Is it that way? How can I obtain that list?
Thanks
Note: Don't think its the same question, since I don't want to use external libraries, if possible, if its the only solution then I will have to handle that way... :/