npm install --save @mcaptcha/svelte-glue
import React, { Component, WidgetConfig } from 'react';
import MyComponent from 'svelte-glue';
import 'svelte-glue/dist/index.css';
class Example extends Component {
render() {
const siteKey: SiteKey = {
key: 'randomSiteKeyAsDisplayedInAdminPanel'
};
const config: WidgetConfig = { siteKey };
return <MyComponent {...config} />;
}
}
Generated using TypeDoc