dptoot / react-event-calendar

A React calendar component to display events
131 stars 55 forks source link

index.jsx looks for JSX files but NPM package doesn't provide them. #11

Closed tom-schultz closed 8 years ago

tom-schultz commented 8 years ago

import CalendarDay from './components/CalendarDay.jsx'; import CalendarEvent from './components/CalendarEvent.jsx'; import CalendarTitle from './components/CalendarTitle.jsx';

Those lines cause the NPM package to look for the JSX, which isn't in the NPM package. The following lines work:

import CalendarDay from './components/CalendarDay'; import CalendarEvent from './components/CalendarEvent'; import CalendarTitle from './components/CalendarTitle';

dptoot commented 8 years ago

I have addressed this in the latest version.