Skip to content
New issue

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

Make calendar #406

Open
injoonH opened this issue Oct 5, 2023 · 3 comments · May be fixed by #419
Open

Make calendar #406

injoonH opened this issue Oct 5, 2023 · 3 comments · May be fixed by #419
Assignees
Labels
feature New major or minor features

Comments

@injoonH
Copy link
Member

injoonH commented Oct 5, 2023

Calendar

Progress

  1. 첫 회의 결과 라이브러리를 사용하지 않고 만들기로 결정
  2. 라이브러리를 사용하지 않으니 시간이 너무 오래 걸림
  3. Slack: [캘린더 라이브러리 사용 vs. 구현] 스레드 논의 결과 FullCalendar 사용하기로 결정
@injoonH injoonH added the feature New major or minor features label Oct 5, 2023
@injoonH
Copy link
Member Author

injoonH commented Oct 5, 2023

달력 기본틀 제작 및 이벤트 추가 확인

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>
    );
  }
}
calendar-01

@injoonH
Copy link
Member Author

injoonH commented Oct 5, 2023

calendar-02

@injoonH
Copy link
Member Author

injoonH commented Oct 5, 2023

calendar-03

@injoonH injoonH linked a pull request Oct 5, 2023 that will close this issue
@DoyunShin DoyunShin linked a pull request Nov 3, 2023 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature New major or minor features
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants