import React, { useEffect, useState } from 'react'; function App() { const [projects, setProjects] = useState([]); const [tasks, setTasks] = useState([]); useEffect(() => { fetch('/api/projects/') .then(response => response.json()) .then(data => setProjects(data)); fetch('/api/tasks/') .then(response => response.json()) .then(data => setTasks(data)); }, []); return (

Projects

Tasks

); } export default App;