1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import React from 'react' export const Curtain = ({ element, transitionDuration }) => { // console.log(element, isEntering) const { color } = element const style = { backgroundColor: color.backgroundColor, color: color.textColor, transitionDuration, } return ( <div className='fullscreen-element curtain' style={style} > </div> ) }