Added redirect router to linkedin

This commit is contained in:
mitchelljfs 2018-07-21 12:47:25 -07:00
parent 50b28490ac
commit 65c1f85277
1 changed files with 6 additions and 0 deletions

View File

@ -17,6 +17,12 @@ class Routes extends React.Component<Props> {
<Route path="/projects" component={Projects} />
<Route path="/experience" component={Experience} />
<Route path="/contact" component={Contact} />
<Route
path="/linkedin"
render={() =>
(window.location = "https://linkedin.com/in/mitchelljfsimon")
}
/>
</Switch>
)
}