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
The text was updated successfully, but these errors were encountered:
달력 기본틀 제작 및 이벤트 추가 확인
class Calendar extends Component { render() { return ( <div className="App"> <FullCalendar defaultView="dayGridMonth" plugins={[dayGridPlugin]} events={[ { title: "event 1", date: "2023-09-14", color: "#E6E6FA" }, { title: "KaPo", start: "2023-09-22", end: "2023-09-24", allday: true, color: "#E0FFFF", }, { title: "qwerty", date: "2023-09-25", color: "#FFF0F5" }, ]} eventTextColor="black" /> </div> ); } }
Sorry, something went wrong.
KoYejune0302
Successfully merging a pull request may close this issue.
Calendar
Progress
The text was updated successfully, but these errors were encountered: