import { entities } from '../../wailsjs/wailsjs/go/models' type Props = { projects: entities.Project[], onSelectProjectHandler: (projectName: string) => void } const ProjectListModal = (props: Props) => { return (

Select your Existing Project

{/* View all */}
) } export default ProjectListModal