Refactor techradar to subfolder

This commit is contained in:
Mathias Schopmans
2017-04-04 18:10:44 +02:00
parent 461c4e7dda
commit 1323610982
11 changed files with 23 additions and 14 deletions

View File

@@ -9,7 +9,7 @@ function Link({ pageName, children, navigate, className, style = {}}) {
};
return (
<a href={`/${pageName}.html`} onClick={handleClick} style={style} {...{ className }}>
<a href={`/techradar/${pageName}.html`} onClick={handleClick} style={style} {...{ className }}>
{children}
</a>
);