-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add component to render full pass1b-06 pheno table for paper in FUNCTION
- Loading branch information
Showing
3 changed files
with
39 additions
and
1 deletion.
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
31 changes: 31 additions & 0 deletions
31
src/Publications/Data/Animal/Phenotype/fullTableEnduranceTraining.jsx
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import React from 'react'; | ||
|
||
function FullTableEnduranceTraining() { | ||
return ( | ||
<div className="fullPhenoPass1b06Table container-fluid px-3 px-md-4 mb-3"> | ||
<div className="headerContainer d-flex flex-row justify-content-start align-items-center"> | ||
<h1>Full phenotype table for animal endurance training study</h1> | ||
<a | ||
type="button" | ||
role="button" | ||
className="btn btn-primary d-flex align-items-center ml-4" | ||
href="https://cdn.motrpac-data.org/assets/datahub/publications/data/animal/phenotype/animal-endurance-training-study-full-table.xlsx" | ||
download | ||
> | ||
<i className="material-icons">file_download</i> | ||
<span className="px-1 text-left">Download this dataset</span> | ||
</a> | ||
</div> | ||
<div className="embedContainer embed-responsive embed-responsive-1by1 mt-3"> | ||
<iframe | ||
title="Full phenotype table for animal endurance training study" | ||
src="https://docs.google.com/spreadsheets/d/e/2PACX-1vQjmAo-lDbApZ42E86U91MP3VZX5KVzoVZWGbyh6oZiHoV0PTq0DIBpUWiSfukQSj5faCpMXjytfpn1/pubhtml?widget=true&headers=true&chrome=false" | ||
className="embed-responsive-item border border-dark" | ||
allowfullscreen | ||
/> | ||
</div> | ||
</div> | ||
); | ||
} | ||
|
||
export default FullTableEnduranceTraining; |