diff options
Diffstat (limited to 'examples/integrations-playground/src/components/Link.jsx')
-rw-r--r-- | examples/integrations-playground/src/components/Link.jsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/integrations-playground/src/components/Link.jsx b/examples/integrations-playground/src/components/Link.jsx new file mode 100644 index 000000000..2758df130 --- /dev/null +++ b/examples/integrations-playground/src/components/Link.jsx @@ -0,0 +1,3 @@ +export default function Link({ to, text }) { + return <a href={to}>{text}</a>; +} |