Shared Tasks is a collaborative to‑do list built with React and Jazz. It lets you organize tasks into lists and sections, then share them with others in real time.
- Install dependencies
yarn install
- Start the development server
The app opens at http://localhost:3000 and reloads on changes.
yarn start
yarn buildThe optimized build is output to the build/ folder.
There are currently no unit tests, but the project is configured for Jest. Run the test runner with:
CI=true yarn test --watchAll=false --passWithNoTests- Real-time collaboration powered by jazz-react
- Multiple lists with sections and tasks
- Share lists via link or QR code
- Simple authentication using the demo auth flow
src/
index.tsx # Application entry, sets up Jazz provider and demo auth
models.ts # Collaborative data models (lists, tasks, account)
ui/ # React components
util/ # Helper functions
To learn more about Jazz, check the Jazz documentation. This project was originally bootstrapped with Create React App.