import React from 'react' import ModalCom from '../Helpers/ModalCom' import ModalBG from '../../assets/images/modalbg.png' export default function HomeModal({userDetails, action, situation}) { const {firstname, lastname} = userDetails const options = [ 'Suggest Task to Parent', 'Suggest Task to Parent' ] const onSelectOption = () => { action() } return ( <>
modal image
{/*

Welcome to WrenchBoard

*/}

Welcome {firstname} {lastname}

Here's where you can explore informative vidoes that provide valuable insight into how you can connect with siblings and family and explore more on personal development

) }