Skip to content

Commit eb4df46

Browse files
committed
Add Binnenhaven case
1 parent 527db79 commit eb4df46

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import {FunctionComponent} from "react"
2+
3+
export const BinnenhavenEmbed: FunctionComponent = () => (
4+
<iframe src="https://app.resourcefully.nl/binnenhaven/?origin=holon" style={{
5+
height: "calc(100vh - var(--header-height))",
6+
width: "100%",
7+
}}></iframe>
8+
)

frontend/components/Blocks/NextInlet.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,15 @@ import {Step2} from "@/components/IJzerboeren/Step2/Step2"
44
import {Step3} from "@/components/IJzerboeren/Step3/Step3"
55
import {IronPowderProcessSankey} from "@/components/IJzerboeren/Sankey/IronPowderProcessSankey"
66
import {HattemEmbed} from "@/components/HattemEmbed"
7+
import {BinnenhavenEmbed} from "@/components/BinnenhavenEmbed"
78

89
const inletComponents = new Map<string, FunctionComponent>([
910
["IJzerboerenStep1", Step1],
1011
["IJzerboerenStep2", Step2],
1112
["IJzerboerenStep3", Step3],
1213
["IronPowderProcessSankey", IronPowderProcessSankey],
1314
["HattemEmbed", HattemEmbed],
15+
["BinnenhavenEmbed", BinnenhavenEmbed],
1416
])
1517

1618
interface Props {

src/main/blocks/next_inlet.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ def __init__(self):
1414
("IJzerboerenStep3", "IJzerboerenStep3"),
1515
("IronPowderProcessSankey", "IronPowderProcessSankey"),
1616
("HattemEmbed", "HattemEmbed"),
17+
("BinnenhavenEmbed", "BinnenhavenEmbed"),
1718
]
1819
)

0 commit comments

Comments
 (0)