https://github.com/guidefari/fullcalendar-webpack
Created with CodeSandbox
https://github.com/guidefari/fullcalendar-webpack
Last synced: over 1 year ago
JSON representation
Created with CodeSandbox
- Host: GitHub
- URL: https://github.com/guidefari/fullcalendar-webpack
- Owner: guidefari
- Created: 2022-12-06T05:26:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-06T08:59:41.000Z (over 3 years ago)
- Last Synced: 2025-04-02T02:44:27.352Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://codesandbox.io/s/github/txndai/fullcalendar-webpack
- Size: 94.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FullCalendar React Example Project
For complete instructions on how to initialize your build system, see the [FullCalendar React Docs »](https://fullcalendar.io/docs/react)
**About this example:** the state for events is owned by the FullCalendar instance and then emitted via `eventsSet` to be used elsewhere in the app. This is easier than owning the state in a parent component because FullCalendar can take care of requesting, parsing, and mutating event data instead of your reducer. However, this technique will only work when a FullCalendar component is rendered. If you need access to your event data when a FullCalendar component is NOT rendered, please take a look at the [React+Redux example »](../react-redux)
## Installation
```bash
git clone https://github.com/fullcalendar/fullcalendar-example-projects.git
cd fullcalendar-example-projects/react
npm install
```
## Build Commands
```bash
npm run start # builds and opens a web browser
# other commands:
npm run build # builds files into dist/ directory
npm run watch # same as build, but watches for changes
npm run clean # start fresh
```