Skip to content
Snippets Groups Projects
Commit c5046647 authored by Liliana Sanfilippo's avatar Liliana Sanfilippo
Browse files

hp

parent 0f9aedb7
No related branches found
No related tags found
No related merge requests found
import { LoremMedium } from "../../components/Loremipsum"
import { Section } from "../../components/sections"
export function HPAbstract(){
return(
<Section title="Abstract" id="Abstract">
<LoremMedium/>
</Section>
)
}
\ No newline at end of file
......@@ -55,6 +55,7 @@ import { HPIntegrated } from "./IHP";
import { HPFurtherEngagement } from "./Further Engagement/FurtherEngagement";
import { HPSupplement } from "./Further Engagement/SupMaterial";
import { useTabNavigation } from "../../utils/TabNavigation";
import { HPAbstract } from "./HP-abstract";
export function HumanPractices() {
useTabNavigation();
......@@ -64,6 +65,7 @@ export function HumanPractices() {
return (
<div className="col">
<HPAbstract/>
<HPOverview/>
<HPIntroduction/>
<HPIntegrated/>
......
......@@ -524,6 +524,12 @@ let symptombuttonrowdata = [
function createSymptomSteckbrief(data: SymptomDatensatz){
let examplelist = [];
for (let index = 0; index < data.subsections.length; index++) {
let absaetze = []
for (let i = 0; i < data.subsections[index].text.length; i++) {
absaetze.push(
<p>{data.subsections[index].text[i]}</p>
)
}
examplelist.push(
<div className="drug">
<H4 text={data.subsections[index].title}/>
......@@ -557,6 +563,13 @@ function createSymptomSteckbrief(data: SymptomDatensatz){
function createDrugSteckbrief(data: DrugDatensatz){
let examplelist = [];
for (let index = 0; index < data.examples.length; index++) {
let absaetze = []
for (let i = 0; i < data.examples[index].text.length; i++) {
absaetze.push(
<p>{data.examples[index].text[i]}</p>
)
}
examplelist.push(
<div className="drug">
<H4 text={data.examples[index].title}/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment