UNPKG
skedify-calendar
Version:
latest (1.2.0-rc.1)
1.2.0-rc.1
1.0.1
1.0.0
Skedify Calendar React component
github.com/skedify/skedify-calendar
skedify/skedify-calendar
skedify-calendar
/
lib
/
es
/
components
/
Calendar
/
Slot.js
14 lines
(11 loc)
•
263 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React, { memo }
from
'react'
;
function
SlotComponent
(
_ref
)
{
var
height = _ref.height;
return
React.
createElement
(
"div"
, {
className
:
"SkedifyCalendar__Slot"
,
style
: {
height
: height } }); } export
var
Slot =
memo
(SlotComponent);