1 2 3 4 5 6
/* jsxImportSource: react */ import React from 'react'; export default function Link({ to, text }) { return <a href={to}>{text}</a>; }