/* @component-map * App — Main container, handles layout and view switching * Header — App title and user info pill * Stats — Displays open/in-progress/completed counts * Filters — Filter buttons for ticket status and priority * AddTicket — Form to create new tickets * TicketList — Renders filtered and sorted ticket cards * TicketCard — Individual ticket with check, status menu, edit, delete * EditModal — Modal overlay for editing a ticket * ActivityLog — Recent activity log section * @end-component-map */ import { useAuth, useCollection, useState } from '@deplixo/sdk'; import { Header } from './components/Header.jsx'; import { Stats } from './components/Stats.jsx'; import { Filters } from './components/Filters.jsx'; import { AddTicket } from './components/AddTicket.jsx'; import { TicketList } from './components/TicketList.jsx'; import { EditModal } from './components/EditModal.jsx'; import { ActivityLog } from './components/ActivityLog.jsx'; function App() { const { user, loading: authLoading } = useAuth(); const { items: tickets, loading: ticketsLoading, add: addTicketItem, update: updateTicket, remove: removeTicket } = useCollection('tickets'); const { items: activity, loading: activityLoading, add: addActivity } = useCollection('activity'); const [currentFilter, setCurrentFilter] = useState('all'); const [editingId, setEditingId] = useState(null); if (authLoading || !user) return
Loading...
; return (
setEditingId(null)} />
); } ReactDOM.createRoot(document.getElementById("root")).render();
Share
Fork It
Notifications
Install App
Dismiss
Privacy
DeplixoAbout Deplixo
duotasks
QR Code
https://deplixo.com/75743060-3551-4061-ad49-500e66b5264b
Deplixo
Deplixo
Turn ideas into shareable apps

This app was built with AI and hosted on Deplixo.

You can do the same — just describe what you want and get a working app in under a minute.

No coding. No signup. Completely free.

Learn More
Fork It

Fork duotasks to your account.

You’ll get your own version to customize and edit freely. The original app won’t be affected.

Install App

Add duotasks to your home screen for quick access — just like a native app.

1
Tap the Share button
The square icon with an arrow pointing up ︎⤴︎
2
Tap “Add to Home Screen”
Scroll down in the share sheet to find it
Notifications
Loading...