import React from 'react'; import CardMover from 'components/cardMover'; export default ({ text = 'No text', moveLeft, moveRight }) => { return <>
{ moveLeft && }
{ text }
{ moveRight && }
; }