Skip to content

Commit

Permalink
feature(navigation): navbar and footer
Browse files Browse the repository at this point in the history
- write tests
- add header component
- add footer component

[Starts #162381835]
  • Loading branch information
tersoo-atsen committed Dec 11, 2018
1 parent a191d70 commit 21ae2cd
Show file tree
Hide file tree
Showing 54 changed files with 1,197 additions and 327 deletions.
1 change: 0 additions & 1 deletion .scss-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ linters:

NestingDepth:
enabled: false
max_depth: 4

SelectorDepth:
enabled: false
Expand Down
33 changes: 33 additions & 0 deletions mockdata/categories.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
export default {
status: 'success',
categories: [
{
id: 1,
categoryName: 'food'
},
{
id: 2,
categoryName: 'programming'
},
{
id: 3,
categoryName: 'physics'
},
{
id: 5,
categoryName: 'gaming'
},
{
id: 6,
categoryName: 'business'
},
{
id: 7,
categoryName: 'travel'
},
{
id: 8,
categoryName: 'fitness'
},
]
};
Loading

0 comments on commit 21ae2cd

Please sign in to comment.