Skip to content

Instantly share code, notes, and snippets.

@Chico-Chen
Created February 2, 2021 04:19
Show Gist options
  • Save Chico-Chen/1c45a81968cd847f1ade9074292c3965 to your computer and use it in GitHub Desktop.
Save Chico-Chen/1c45a81968cd847f1ade9074292c3965 to your computer and use it in GitHub Desktop.
import { writable } from 'svelte/store';
let id = 0;
const tasks = writable([
{
id: ++id,
title: "Learning TigerGraph",
checkLists: [],
done: false
},
{
id: ++id,
title: "Write a blog about tigergraph learning",
checkLists: [],
done: false
},
{
id: ++id,
title: "Learning TigerGraph",
checkLists: [],
done: false
},
{
id: ++id,
title: "Learning TigerGraph",
checkLists: [],
done: false
}
]);
export default tasks;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment