repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
Projectflow
stars
latest
clone command
git clone gitlawb://did:key:z6Mkfh4Y...QBEi/projectflowgit clone gitlawb://did:key:z6Mkfh4Y.../projectflowb3cded1async from playground1d ago| import type { User } from "../../domain/entities"; |
| #2 |
| #3 | export const users: User[] = [ |
| #4 | { |
| #5 | id: "u1", |
| #6 | name: "Alex Chen", |
| #7 | email: "alex@projectflow.dev", |
| #8 | avatar: "", |
| #9 | createdAt: "2025-01-15T10:00:00Z", |
| #10 | }, |
| #11 | { |
| #12 | id: "u2", |
| #13 | name: "Sarah Kim", |
| #14 | email: "sarah@projectflow.dev", |
| #15 | avatar: "", |
| #16 | createdAt: "2025-01-20T10:00:00Z", |
| #17 | }, |
| #18 | { |
| #19 | id: "u3", |
| #20 | name: "Marcus Johnson", |
| #21 | email: "marcus@projectflow.dev", |
| #22 | avatar: "", |
| #23 | createdAt: "2025-02-01T10:00:00Z", |
| #24 | }, |
| #25 | { |
| #26 | id: "u4", |
| #27 | name: "Priya Patel", |
| #28 | email: "priya@projectflow.dev", |
| #29 | avatar: "", |
| #30 | createdAt: "2025-02-10T10:00:00Z", |
| #31 | }, |
| #32 | ]; |
| #33 |