feat: update roles card, mocks, schema, stories

This commit is contained in:
MTG2000
2022-08-22 13:34:30 +03:00
parent 80b7053f88
commit bb0fbfa572
15 changed files with 841 additions and 145 deletions

View File

@@ -1,7 +1,7 @@
import { hackathons } from "./data/hackathon";
import { posts, feed, generatePostComments } from "./data/posts";
import { categories, projects } from "./data/projects";
import { user } from "./data/users";
import { allMakersRoles, allMakersSkills, user } from "./data/users";
export const MOCK_DATA = {
projects,
@@ -10,5 +10,7 @@ export const MOCK_DATA = {
feed,
hackathons,
generatePostComments: generatePostComments,
user: user
user: user,
allMakersRoles: allMakersRoles,
allMakersSkills: allMakersSkills,
}