Update dry-squids-tap.md

Signed-off-by: Ben Lambert <blam@spotify.com>
Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
Ben Lambert
2024-06-26 16:20:47 +02:00
committed by blam
parent 546700b0c1
commit 1f5094f1b7
+2 -2
View File
@@ -14,9 +14,9 @@ const TestExtensionKind = createExtensionKind({
output: {
element: coreExtensionData.reactElement,
},
factory(_, props: { text: string }) {
factory(_, options: { text: string }) {
return {
element: <h1>{props.text}</h1>,
element: <h1>{options.text}</h1>,
};
},
});