Closed hogekai closed 10 months ago
You can try insert this at warpper component to 'dangerouslySetInnerHTML' prop. like this:
<div
dangerouslySetInnerHTML={{__html: t("I agree to the :terms_of_service and :privacy_policy", {
terms_of_service: `<a href="${route('terms.show')}">${t('Terms of Service')}</a>`,
privacy_policy: `<a href="${route('policy.show')}">${t('Privacy Policy')}</a>`,
})
}}
/>
It worked as expected. Thank you!
This package is great, but I can't place the link.
example:
Is there a way? thanks.