-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HOTFIX: Changes necessary to deploy React build (#258)
- Loading branch information
1 parent
64a13ba
commit fe9c766
Showing
3 changed files
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
import React from 'react'; | ||
import Button from '@material-ui/core/Button'; | ||
import { Link } from 'react-router-dom'; | ||
|
||
export default function MyHealthLog() { | ||
return ( | ||
<Button color="secondary"variant='contained' href='/symptomsurvey'>Take a survey</Button> | ||
<Link to="/symptomsurvey"> | ||
<Button color="secondary" variant='contained'>Take a survey</Button> | ||
</Link> | ||
) | ||
} |