Trying to incorporate react-datepicker into a meteor 1.3 and react project has been quite successful so far.
The only issue I am facing is the inability to access any of the css styles from the package. According to the readme, I'm supposed to require the css file provided in the package.
If I were not using meteor, I could easily include the css file by starting with:
var React = require('react');
var DatePicker = require('react-datepicker');
var moment = require('moment');
require('react-datepicker/dist/react-datepicker.css');
However, in meteor 1.3, I started it with:
import React from 'react';
import DatePicker from 'react-datepicker';
import moment from 'moment';
I'm at a loss on how to require the css file. Can someone shed some light on this?