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 index 2758df130..040d112c3 100644 --- a/examples/integrations-playground/src/components/Link.jsx +++ b/examples/integrations-playground/src/components/Link.jsx @@ -1,3 +1,6 @@ +/* jsxImportSource: react */ +import React from 'react'; + export default function Link({ to, text }) { return <a href={to}>{text}</a>; } |