-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.jsx
59 lines (51 loc) · 1.23 KB
/
App.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import {
Calendar,
CalendarContainer,
CalendarProvider,
useCalendarState,
useCalendarDispatch,
ACTION_TYPES,
} from '../dist';
function SampleCheckin() {
const { checkin } = useCalendarState();
const calendarDispatch = useCalendarDispatch();
const handleClickButton = () => {
const type = ACTION_TYPES.CHECK_IN_DELETE;
calendarDispatch({ type });
};
return (
<div>
<span>Check In : {checkin.toString()}</span>
{checkin && <button onClick={handleClickButton}>delete</button>}
</div>
);
}
function SampleCheckOut() {
const { checkout } = useCalendarState();
const calendarDispatch = useCalendarDispatch();
const handleClickButton = () => {
const type = ACTION_TYPES.CHECK_OUT_DELETE;
calendarDispatch({ type });
};
return (
<div>
<span>Check Out : {checkout.toString()}</span>
{checkout && <button onClick={handleClickButton}>delete</button>}
</div>
);
}
function App() {
return (
<div className='App'>
<h1>Hello Calendar</h1>
<CalendarProvider>
<SampleCheckin />
<SampleCheckOut />
<CalendarContainer>
<Calendar />
</CalendarContainer>
</CalendarProvider>
</div>
);
}
export default App;