From c38690c7139aac5944bc633e6ed6e2f7812f8d8c Mon Sep 17 00:00:00 2001 From: Salma Alam-Naylor Date: Mon, 25 Sep 2023 09:02:23 +0100 Subject: [PATCH] Actually add arcade embed file --- src/_components/arcadeEmbed.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/_components/arcadeEmbed.js diff --git a/src/_components/arcadeEmbed.js b/src/_components/arcadeEmbed.js new file mode 100644 index 00000000..748e5198 --- /dev/null +++ b/src/_components/arcadeEmbed.js @@ -0,0 +1,8 @@ +function ArcadeEmbed({ embedCode, title }) { + return /* html */ ` +
+ ${embedCode}> +
`; +} + +module.exports = ArcadeEmbed;