{#if showNewProject}
e.key === 'Enter' && handleCreate()} />
t.name)} bind:value={selectedTemplateIndex} />
handleCreate()} > Create
{/if}
{#if projectManager.loading}
Loading...
{/if}
{#each projectManager.projects as project (project.id)}
projectManager.handleSelectProject(project.id!)} role="button" tabindex="0" onkeydown={(e) => e.key === 'Enter' && projectManager.handleSelectProject(project.id!)} >
{project.meta?.title || 'Untitled'}
{ projectManager.handleDeleteProject(project.id!); }} > ×
{/each}