Skip to content

Releases: grubersjoe/react-activity-calendar

Localization for labels

31 Jul 16:22
Compare
Choose a tag to compare

Skeleton component

26 Jul 17:24
Compare
Choose a tag to compare

A new Skeleton component is exported to show the loading state in a more convenient manner:

import Calendar, { Skeleton as CalendarSkeleton } from 'react-activity-calendar';

// ...

const render = loading ? <CalendarSkeleton loading /> : <Calendar data={data} />;

Of course you still can use the loading property of the calendar component directly. However, the calendar requires the data property.

First release

11 Jul 14:29
Compare
Choose a tag to compare

This component was extracted from grubersjoe/react-github-calendar to improve reusability. I hope it is useful for someone :).