mirror of https://github.com/mitchell/mjfs.us.git
Added redirect router to linkedin
This commit is contained in:
parent
50b28490ac
commit
65c1f85277
|
@ -17,6 +17,12 @@ class Routes extends React.Component<Props> {
|
||||||
<Route path="/projects" component={Projects} />
|
<Route path="/projects" component={Projects} />
|
||||||
<Route path="/experience" component={Experience} />
|
<Route path="/experience" component={Experience} />
|
||||||
<Route path="/contact" component={Contact} />
|
<Route path="/contact" component={Contact} />
|
||||||
|
<Route
|
||||||
|
path="/linkedin"
|
||||||
|
render={() =>
|
||||||
|
(window.location = "https://linkedin.com/in/mitchelljfsimon")
|
||||||
|
}
|
||||||
|
/>
|
||||||
</Switch>
|
</Switch>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue