mirror of
https://github.com/aljazceru/landscape-template.git
synced 2026-01-14 20:04:28 +01:00
16 lines
473 B
TypeScript
16 lines
473 B
TypeScript
import { hackathons } from "./data/hackathon";
|
|
import { posts, feed, generatePostComments } from "./data/posts";
|
|
import { categories, projects } from "./data/projects";
|
|
import { allMakersRoles, allMakersSkills, user } from "./data/users";
|
|
|
|
export const MOCK_DATA = {
|
|
projects,
|
|
categories,
|
|
posts,
|
|
feed,
|
|
hackathons,
|
|
generatePostComments: generatePostComments,
|
|
user: user,
|
|
allMakersRoles: allMakersRoles,
|
|
allMakersSkills: allMakersSkills,
|
|
} |