import React, { useState } from 'react'; import { motion } from 'framer-motion'; const CalloutModal = ({ isOpen, onClose, item, onSubmit }) => { const [tokenId, setTokenId] = useState(''); const handleTokenChange = (e) => { setTokenId(e.target.value); }; const handleSubmit = () => { onSubmit(tokenId); onClose(); }; return isOpen ? (

Make a new call!

Type in a tokens short code, that you will think boom anytime soon

) : null; }; export default CalloutModal;