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
You should be able to store and get events tied to dates. Something like:
Event<T = { [key: string]: any }> { start: Date; end: Date; meta?: T; } addEvent(event: Event) => void eventsFor(date: Date) => Event[] hasEvents(date: Date) => boolean // etc
So you'd just draw the calendar like this, and use eventsFor to list events for each hour block?
eventsFor
I'm not totally sure this is really a necessary feature, you could still use use-lilius for an event calendar without this.
use-lilius
The text was updated successfully, but these errors were encountered:
#496
i think i have cooked up something in this direction :)
Sorry, something went wrong.
its-danny
No branches or pull requests
You should be able to store and get events tied to dates. Something like:
So you'd just draw the calendar like this, and use
eventsFor
to list events for each hour block?I'm not totally sure this is really a necessary feature, you could still use
use-lilius
for an event calendar without this.The text was updated successfully, but these errors were encountered: