Skip to content
Snippets Groups Projects
SupMaterial.tsx 746 B
Newer Older
Max Luca Beckmann's avatar
Max Luca Beckmann committed
import { DownloadLink } from "../../../components/Buttons";
Liliana Sanfilippo's avatar
Liliana Sanfilippo committed
import { Section } from "../../../components/sections";
import { useTabNavigation } from "../../../utils/TabNavigation";
Liliana Sanfilippo's avatar
Liliana Sanfilippo committed

export function HPSupplement(){
    useTabNavigation();
Liliana Sanfilippo's avatar
Liliana Sanfilippo committed
    return(
        <Section title="Supplementary Material" id="Supplementary Material">
Max Luca Beckmann's avatar
Max Luca Beckmann committed
            <div className="row">
                <div className="col">
Kaya Lange's avatar
Kaya Lange committed
                <p>Click here to see our raw data of our surverys.</p>
Max Luca Beckmann's avatar
Max Luca Beckmann committed
                </div>
                <div className="col">
                <DownloadLink url="https://static.igem.wiki/teams/5247/pdfs/raw-data-surveys.pdf"  fileName="raw-data-surveys.pdf"></DownloadLink>
                </div>
            </div>
Liliana Sanfilippo's avatar
Liliana Sanfilippo committed
        </Section>
    )
}