11
12export default async function App() {
13▶ const res = await fetch('http://localhost:3001/todos');
14 const todos = await res.json();
15 return h(
· · ·
14▶ const todos = await res.json();
15 return h(
16 'html',
· · ·
17 {
18▶ lang: 'en',
19 },
20 h(
· · ·
45 'ul',
46 null,
47▶ todos.map(todo =>
48 h(
49 'li',
· · ·
50 {
51▶ key: todo.id,
52 },
53 todo.text
+ 1 more matches in this file