Getting started instructions
See original GitHub issueSorry, I’m missing any getting started instructions.
Import right component
I figured out that SingleDatePicker
is exported from node_modules
. So step 1 for example is:
import { SingleDatePicker } from 'react-dates';
CSS styling
But what about CSS? My page currently looks like the image below.
I cannot find any custom steps I have to undertake after npm install --save react-dates
.
It can be solved by copying contents of node_modules/react-dates/lib/css/_datepicker.css
to a css file and include that myself, but I guess it would be nice if it worked out of the box?
Should users build this project first or…?
Issue Analytics
- State:
- Created 7 years ago
- Reactions:41
- Comments:18 (2 by maintainers)
Top Results From Across the Web
1. Welcome to Getting Started User Guide - Oracle Help Center
The Getting Started User Guide helps you get started with Oracle Banking applications. This user guide explains the basic design of Oracle and...
Read more >Getting Started - User Manual - 1.0 - Manula.com
Let's get you started on your first online manual. We'll discuss how to create a new manual and add some topics, how to...
Read more >10 Tips for Creating Quick Start Guides - Make it Clear
10 tips for creating quick start guides · 1. Identify the objective(s) · 2. Show don't tell · 3. Define the scenarios ·...
Read more >Getting started for beginners - Box Support
Getting started for beginners · The Basics of Box · Download Box Drive and Edit · Upload Your Content to Box · Collaborate...
Read more >Getting Started on Differentiated Instructions - YouTube
Carol Tomlinson provides an explanation on getting started with differentiate instruction.Inscribase en el Simposio en Lima, ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Found a way to get it working.
.scss
files with Sass loader and webpack? There should be an easier solution than this right?Install dependencies
Make sure you have the following dependencies installed (not jquery after it’s dropped #39):
Include component
Include CSS
When you use Webpack with CSS loader:
Otherwise create a CSS file with the contents of
node_modules/react-dates/lib/css/_datepicker.css
and include it in the html<head>
section.Make some awesome datepickers
@arthurvi this was very helpful for me. thanks!