import { Component } from 'solid-js'; import { A } from '@solidjs/router'; import { useAuth } from '../../lib/auth'; import { createProjectService } from '../../lib/projects/service'; export const Dashboard: Component = () => { const auth = useAuth(); const projectService = createProjectService(); return (
Here's what's happening with your projects.
{project.description}
)) )}