We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently we are exporting two different files for the two components. Instead we can export just one file having DayPicker.Input in the global vars.
DayPicker.Input
Example:
<html> <head> <meta charset="utf-8" /> <script src="https://unpkg.com/react/dist/react.js"></script> <script src="https://unpkg.com/react-dom/dist/react-dom.js"></script> <script src="https://unpkg.com/babel-standalone/babel.min.js"></script> <script src="https://unpkg.com/moment/min/moment.min.js"></script> <script src="https://unpkg.com/react-day-picker/daypicker.min.js"></script> <link rel="stylesheet" href="./lib/style.css"> </head> <body> <div id="root"></div> <script type="text/babel"> ReactDOM.render( <DayPicker.Input />, document.getElementById('root') ); </script> </body> </html>
The text was updated successfully, but these errors were encountered:
gpbl
No branches or pull requests
Currently we are exporting two different files for the two components. Instead we can export just one file having
DayPicker.Input
in the global vars.Example:
The text was updated successfully, but these errors were encountered: