import 'svelte/internal/disclose-version';
import 'svelte/internal/flags/legacy';
import * as $ from 'svelte/internal/client';
import TodoList from "./TodoList.svelte";
export default function App($$anchor) {
let todos = [
{
id: 1,
name: "Create a Svelte starter app",
completed: true
},
{
id: 2,
name: "Create your first component",
completed: true
},
{
id: 3,
name: "Complete the rest of the tutorial",
completed: false
}
];
TodoList($$anchor, { todos });
}