Last active
December 26, 2021 19:38
-
-
Save treyhuffine/b674c0477c3533f88e93709565259ca4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom'; | |
import Me from './Me'; | |
import Projects from './Projects'; | |
import Work from './Work'; | |
import Education from './Education'; | |
const Pages = ({ user }) => { | |
return ( | |
<Router> | |
<Routes> | |
<Route exact path="/" element={<Me user={user} />} /> | |
<Route path="/projects" element={<Projects user={user} />} /> | |
<Route path="/work" element={<Work user={user} />} /> | |
<Route path="/education" element={<Education user={user} />} /> | |
</Routes> | |
</Router> | |
); | |
}; | |
export default Pages; |
Hello,
Please delete this account: https://gitconnected.com/SeanRoberts-ca
…---------------
Thank You,
Sean Roberts
204-899-7142
From: Trey Huffine
Sent: December 26, 2021 9:44 AM
To: treyhuffine
Cc: Sean Roberts; Mention
Subject: Re: treyhuffine/portfolio-src-pages-index.js
@treyhuffine commented on this gist.
Thanks @SeanRoberts-ca it's been updated!
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.
You are receiving this because you were mentioned.Message ID: ***@***.***>
@SeanRoberts-ca of course! This account has been deleted.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks @SeanRoberts-ca it's been updated!