+
{data.itemNames[recipeInfo.output]}
+
+ {recipeInfo.inputs.map((items, i) =>
{items ? : }
)}
+
+
+
+
+ {recipeInfo.count > 1 && {recipeInfo.count}}
+
+
+};
+
+export default Recipe;
diff --git a/src/web/components/WithExport.tsx b/src/web/components/WithExport.tsx
new file mode 100644
index 000000000..10cfcfb37
--- /dev/null
+++ b/src/web/components/WithExport.tsx
@@ -0,0 +1,23 @@
+import { createElement as h, useContext, createContext, FunctionComponent, ReactNode } from "react";
+
+export type DataExport = {
+ readonly itemNames: Record