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"; ...@@ -55,6 +55,7 @@ import { HPIntegrated } from "./IHP";
import { HPFurtherEngagement } from "./Further Engagement/FurtherEngagement"; import { HPFurtherEngagement } from "./Further Engagement/FurtherEngagement";
import { HPSupplement } from "./Further Engagement/SupMaterial"; import { HPSupplement } from "./Further Engagement/SupMaterial";
import { useTabNavigation } from "../../utils/TabNavigation"; import { useTabNavigation } from "../../utils/TabNavigation";
import { HPAbstract } from "./HP-abstract";
export function HumanPractices() { export function HumanPractices() {
useTabNavigation(); useTabNavigation();
...@@ -64,6 +65,7 @@ export function HumanPractices() { ...@@ -64,6 +65,7 @@ export function HumanPractices() {
return ( return (
<div className="col"> <div className="col">
<HPAbstract/>
<HPOverview/> <HPOverview/>
<HPIntroduction/> <HPIntroduction/>
<HPIntegrated/> <HPIntegrated/>
......
...@@ -524,6 +524,12 @@ let symptombuttonrowdata = [ ...@@ -524,6 +524,12 @@ let symptombuttonrowdata = [
function createSymptomSteckbrief(data: SymptomDatensatz){ function createSymptomSteckbrief(data: SymptomDatensatz){
let examplelist = []; let examplelist = [];
for (let index = 0; index < data.subsections.length; index++) { 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( examplelist.push(
<div className="drug"> <div className="drug">
<H4 text={data.subsections[index].title}/> <H4 text={data.subsections[index].title}/>
...@@ -557,6 +563,13 @@ function createSymptomSteckbrief(data: SymptomDatensatz){ ...@@ -557,6 +563,13 @@ function createSymptomSteckbrief(data: SymptomDatensatz){
function createDrugSteckbrief(data: DrugDatensatz){ function createDrugSteckbrief(data: DrugDatensatz){
let examplelist = []; let examplelist = [];
for (let index = 0; index < data.examples.length; index++) { 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( examplelist.push(
<div className="drug"> <div className="drug">
<H4 text={data.examples[index].title}/> <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