data.tsx — ui Source File
Architecture documentation for data.tsx, a tsx file in the ui codebase. 1 imports, 4 dependents.
Entity Profile
Dependency Diagram
graph LR 13d2cdc2_fcbd_c4c7_04e9_fa2d55632727["data.tsx"] d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3["lucide-react"] 13d2cdc2_fcbd_c4c7_04e9_fa2d55632727 --> d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3 43b33977_407a_3859_0d77_dc087ee891e4["columns.tsx"] 43b33977_407a_3859_0d77_dc087ee891e4 --> 13d2cdc2_fcbd_c4c7_04e9_fa2d55632727 44065ac3_d397_103c_a19c_808248c8f43d["data-table-row-actions.tsx"] 44065ac3_d397_103c_a19c_808248c8f43d --> 13d2cdc2_fcbd_c4c7_04e9_fa2d55632727 3f48c144_ad77_88d6_d116_724634f2678d["data-table-toolbar.tsx"] 3f48c144_ad77_88d6_d116_724634f2678d --> 13d2cdc2_fcbd_c4c7_04e9_fa2d55632727 3cd18191_ec57_38de_f487_a8211244ca7a["seed.ts"] 3cd18191_ec57_38de_f487_a8211244ca7a --> 13d2cdc2_fcbd_c4c7_04e9_fa2d55632727 style 13d2cdc2_fcbd_c4c7_04e9_fa2d55632727 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import {
ArrowDown,
ArrowRight,
ArrowUp,
CheckCircle,
Circle,
CircleOff,
HelpCircle,
Timer,
} from "lucide-react"
export const labels = [
{
value: "bug",
label: "Bug",
},
{
value: "feature",
label: "Feature",
},
{
value: "documentation",
label: "Documentation",
},
]
export const statuses = [
{
value: "backlog",
label: "Backlog",
icon: HelpCircle,
},
{
value: "todo",
label: "Todo",
icon: Circle,
},
{
value: "in progress",
label: "In Progress",
icon: Timer,
},
{
value: "done",
label: "Done",
icon: CheckCircle,
},
{
value: "canceled",
label: "Canceled",
icon: CircleOff,
},
]
export const priorities = [
{
label: "Low",
value: "low",
icon: ArrowDown,
},
{
label: "Medium",
value: "medium",
icon: ArrowRight,
},
{
label: "High",
value: "high",
icon: ArrowUp,
},
]
Domain
Dependencies
- lucide-react
Imported By
Source
Frequently Asked Questions
What does data.tsx do?
data.tsx is a source file in the ui codebase, written in tsx. It belongs to the ApplicationExhibition domain.
What does data.tsx depend on?
data.tsx imports 1 module(s): lucide-react.
What files import data.tsx?
data.tsx is imported by 4 file(s): columns.tsx, data-table-row-actions.tsx, data-table-toolbar.tsx, seed.ts.
Where is data.tsx in the architecture?
data.tsx is located at apps/v4/app/(app)/examples/tasks/data/data.tsx (domain: ApplicationExhibition, directory: apps/v4/app/(app)/examples/tasks/data).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free