This is a React component wrapping TOAST UI Calendar.
- 📙 Documents
- Collect statistics on the use of open source
- 💾 Installation
- 📅 Usage
- 🔧 Pull Request Steps
- 💬 Contributing
- 📜 License
TOAST UI Calendar for React applies Google Analytics (GA) to collect statistics on the use of open source, in order to identify how widely TOAST UI Calendar is used throughout the world. It also serves as important index to determine the future course of projects. location.hostname
(e.g. > “ui.toast.com") is to be collected and the sole purpose is nothing but to measure statistics on the usage.
To disable GA, set the usageStatistics
option to false
:
export function MyCalendar() {
return (
<div>
<Calendar usageStatistics={false} />
</div>
);
}
npm install --save @toast-ui/react-calendar
You can use Toast UI Calendar for React as moudule format or namespace.
/* ES6 module in Node.js environment */
import Calendar from '@toast-ui/react-calendar';
import '@toast-ui/calendar/dist/toastui-calendar.min.css';
/* CommonJS in Node.js environment */
const Calendar = require('@toast-ui/react-calendar');
require('@toast-ui/calendar/dist/toastui-calendar.min.css');
// browser environment namespace
const Calendar = tui.ReactCalendar;
TOAST UI products are open source, so you can create a pull request(PR) after you fix issues. Run npm scripts and develop yourself with the following process.
Fork main
branch into your personal repository.
Clone it to local computer. Install node modules.
Before starting development, you should check to have any errors.
git clone https://github.com/{your-personal-repo}/[[repo name]].git
cd [[repo name]]
npm install
Let's start development!
Before PR, check to test lastly and then check any errors. If it has no error, commit and then push it!
For more information on PR's step, please see links of Contributing section.