import { useRef } from 'react' type Props = { onCreateNewProjectHandler: (projectName: string) => void } const NewProjectModal = (props: Props) => { const projectNameRef = useRef(null) return (

Name Your New Project

A unique name will be best. This can be changed later.

) } export default NewProjectModal