import React from 'react' export const FullscreenTextPlate = ({ element, transitionDuration }) => { // console.log(element) const { color } = element const style = { backgroundColor: color.backgroundColor.replace('1.0', '0.8'), color: color.textColor, transitionDuration, } return (
{element.annotation.text}
) }