/ready-to-play

Primary LanguageTypeScript

Ready to play

This codebase is intended to server as a starting point for simple demos which will be used to review issues.

Open in stackblitz Open on Codesandbox

Seed data

await tasks.insert(
  Array.from({ length: 10 }).map((_, i) => ({
    title: faker.hacker.phrase(),
    completed: i % 2 === 0,
  }))
)